From 676193f47ec3e6de27bb681d00875ab5de3f0c04 Mon Sep 17 00:00:00 2001 From: ficeto Date: Thu, 14 May 2015 17:20:15 +0300 Subject: [PATCH] mount spiffs on boot --- cores/esp8266/core_esp8266_wiring.c | 1 + 1 file changed, 1 insertion(+) diff --git a/cores/esp8266/core_esp8266_wiring.c b/cores/esp8266/core_esp8266_wiring.c index 0170b4bcf..67c47514c 100644 --- a/cores/esp8266/core_esp8266_wiring.c +++ b/cores/esp8266/core_esp8266_wiring.c @@ -78,4 +78,5 @@ void init() { timer1_isr_init(); os_timer_setfn(µs_overflow_timer, (os_timer_func_t*) µs_overflow_tick, 0); os_timer_arm(µs_overflow_timer, 60000, REPEAT); + spiffs_mount(); }