Results 43 comments of MooZ

Code documentation is now accessible here: http://blockos.github.io/HuDK/doc The hw docs are far from begin complete atm.

I'm thinking about making DataFlash::enable call waitUntilReady before setting CS pin low.

- Did you power the dataflash with 3.3V ? - Did you check that the pin values for SPI (SS, CS, MISO, MOSI, etc...) are correct ? - In pagetest...

:man_facepalming: doh... I just noticed this in pagetest source code: ``` /* Initialize dataflash */ dataflash.setup(5,6,7); ``` This means that CS is on pin 5. Ok so.. to make it...

Ok. Normally you should get "@ write test 0" etc.. but it seems that the behaviour of Serial.print has changed since I wrote this example. You may replace it with...

Here's an idea, each time you read a value from the ADC, you store it to in one of the Dataflash buffer. When this buffer is full (or when you...

Use https://likle.github.io/cwalk/ for filenames

stdint.h and inttypes.h can now be removed.

Cool! Glad it helps. I found myself in a similar situation. Unfortunately I didn't find any good solution (either inside etripator or using scripts). My workflow is: I have 2...

I quickly looked at the dataflash e version datasheet. It seems they added some new continuons read modes, and maybe they fixed chip erase... ~~It also seems that page 0...