From 5d1ee7ace600fc6d56649f4084652f7cb3789e5e Mon Sep 17 00:00:00 2001 From: ficeto Date: Thu, 14 May 2015 00:53:55 +0300 Subject: [PATCH] disable automount --- cores/esp8266/core_esp8266_wiring.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cores/esp8266/core_esp8266_wiring.c b/cores/esp8266/core_esp8266_wiring.c index 985db8310..994c8cb5c 100644 --- a/cores/esp8266/core_esp8266_wiring.c +++ b/cores/esp8266/core_esp8266_wiring.c @@ -76,7 +76,7 @@ void delayMicroseconds(unsigned int us) { void init() { initPins(); timer1_isr_init(); - spiffs_mount(); + //spiffs_mount(); os_timer_setfn(µs_overflow_timer, (os_timer_func_t*) µs_overflow_tick, 0); os_timer_arm(µs_overflow_timer, 60000, REPEAT); }