Add VERIFY_FLASH_WRITE as remedy for #15
This commit is contained in:
parent
f3061cb82d
commit
75c3c2d5c7
9 changed files with 54 additions and 17 deletions
|
@ -7,7 +7,7 @@
|
|||
This project is based off of the I2S interface for the mp3 player found here:
|
||||
https://github.com/espressif/esp8266_mp3_decoder/
|
||||
|
||||
If you want more information about the build environment, etc. You should
|
||||
If you want more information about the build environment, etc. You should
|
||||
check out the regular WS2812 driver, found here: https://github.com/cnlohr/ws2812esp8266
|
||||
|
||||
WARNING: This subproject is very jankey! It's about stable, but I don't think it's quite there yet.
|
||||
|
@ -20,7 +20,14 @@ The audio data is taken from TOUT, but must be kept between 0 and 1V.
|
|||
|
||||
## Notes
|
||||
|
||||
./makeconf.inc has a few variables that make uses for building and flashing the firmware.
|
||||
./makeconf.inc has a few variables that Make uses for building and flashing the firmware.
|
||||
Most notably the location of the toolchain for the esp8266/85 on your system.
|
||||
You should edit them according to your preferences or better add `export ESP_ROOT='/path/to/the/esp-open-sdk'` to your bashrc.
|
||||
|
||||
If you have problems with burning the firmware or transfering page data over network (`make netburn` or `make netweb`), you should try uncommenting
|
||||
|
||||
OPTS += -DVERIFY_FLASH_WRITE
|
||||
|
||||
in `makeconf.inc`. This way the esp checks if the flash is written correctly.
|
||||
Especially with some ESP-01 modules there has been a problem with the flash
|
||||
not being written correctly.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue