mirror of https://github.com/e2002/yoradio.git
v0.9.370
This commit is contained in:
parent
051edee3ff
commit
4da7118dd4
|
|
@ -234,6 +234,9 @@ Work is in progress...
|
|||
|
||||
---
|
||||
## Version history
|
||||
#### v0.9.370
|
||||
- fixed the issue with saving settings on fresh ESP modules.
|
||||
|
||||
#### v0.9.369
|
||||
- fixed the issue with the non-functional HSPI bus
|
||||
|
||||
|
|
|
|||
|
|
@ -57,8 +57,10 @@ void Config::init() {
|
|||
#endif
|
||||
eepromRead(EEPROM_START, store);
|
||||
|
||||
if (store.config_set != 4262) setDefaults();
|
||||
|
||||
if (store.config_set != 4262) {
|
||||
setDefaults();
|
||||
eepromWrite(EEPROM_START, store);
|
||||
}
|
||||
if(store.version>CONFIG_VERSION) store.version=1;
|
||||
while(store.version!=CONFIG_VERSION) _setupVersion();
|
||||
BOOTLOG("CONFIG_VERSION\t%d", store.version);
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
#ifndef options_h
|
||||
#define options_h
|
||||
|
||||
#define YOVERSION "0.9.369"
|
||||
#define YOVERSION "0.9.370"
|
||||
|
||||
/*******************************************************
|
||||
DO NOT EDIT THIS FILE.
|
||||
|
|
|
|||
Loading…
Reference in New Issue