mirror of https://github.com/jeelabs/esp-link.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
380 B
20 lines
380 B
/* Configuration stored in flash */
|
|
|
|
#include <esp8266.h>
|
|
#include <osapi.h>
|
|
#include "config.h"
|
|
#include "espfs.h"
|
|
|
|
FlashConfig flashConfig = {
|
|
MCU_RESET_PIN, MCU_ISP_PIN, LED_CONN_PIN, LED_SERIAL_PIN,
|
|
115200,
|
|
"esp-link\0 ",
|
|
};
|
|
|
|
bool ICACHE_FLASH_ATTR configSave(void) {
|
|
return true;
|
|
}
|
|
|
|
bool ICACHE_FLASH_ATTR configRestore(void) {
|
|
return true;
|
|
}
|
|
|