Forum Replies Created

Viewing 25 posts - 1 through 25 (of 32 total)
  • Author
    Posts
  • in reply to: ESP32 port of 2.1.9 firmware #77286

    polskifacet
    Participant

    Thanks again @V1pr. This has been rock solid for me on esp32! No issues, hasn’t even needed a reboot since June!

    in reply to: ESP32 port of 2.1.9 firmware #76227

    polskifacet
    Participant

    I uploaded this code to a regular ESP Wroom-32 dev without OLED and everything I use works (just 4 relays, no buttons, no sensors).

    in reply to: ESP32 port of 2.1.9 firmware #76118

    polskifacet
    Participant

    @v1pr For sure I just like minimalist setups, for example I’m using OpenSprinkler for a chlorine dosing pump which needs 1 GPIO to go to a relay. Having Io expander just makes it messy lol.

    in reply to: ESP32 port of 2.1.9 firmware #76116

    polskifacet
    Participant

    @v1pr Everything I use is working great, I don’t have any sensors etc. The old 2.1.9 port had a weird bug with the time not staying current from ntp, but I think Ray improved that in newer versions (no external rtc needed). Superb work and I’m sure many people will appreciate this.
    One question I have is WeMos D1 mini seems to get compiled as well, will this work for most esp8266? Ray’s esp8266 code works but I think only with the IO expander. Esp8266 with OLED only has 3 free gpios (that are not set to high on boot) but either a version without the screen or just the 3 gpios for remote stations could be useful.

    in reply to: ESP32 port of 2.1.9 firmware #76102

    polskifacet
    Participant

    Awesome LCD works !!!!

    in reply to: ESP32 port of 2.1.9 firmware #76097

    polskifacet
    Participant

    @v1pr I wasn’t able to compile with the new version of ESP32.H, I used the old one and just made the changes you suggested and put my pins etc. The GPIOs function in the correct order now (I assume those were double assigned to something else). LCD still doesn’t want to comply :(. Any other tips?

    #if defined(LCD_SH1106)
    SH1106Display OpenSprinkler::lcd(LCD_I2CADDR, SDA, SCL);
    #else
    SSD1306Display OpenSprinkler::lcd(LCD_I2CADDR, SDA_PIN, SCL_PIN);
    #endif

    if defined(ARDUINO)
    #if defined(ESP32)
    if(!Wire.begin(SDA_PIN,SCL_PIN)) { DEBUG_PRINTLN(F(“Error initiating I2C”)); }
    #ifdef ENABLE_DEBUG
    scan_i2c();
    #endif
    #else
    Wire.begin(); // init I2C
    #endif
    #endif

    in reply to: ESP32 port of 2.1.9 firmware #76091

    polskifacet
    Participant

    @v1pr I noticed that the GPIOs in your firmware don’t match the board? Ja carters did match up, I’m using 12,13,14,15 for stations. Probably explains why the screen isn’t working.

    in reply to: ESP32 port of 2.1.9 firmware #76069

    polskifacet
    Participant

    No luck
    – updated lib to 4.4.0
    – tried SH1106 and SSD1306
    – Flashed Ja.Carer’s fw and it works

    in reply to: ESP32 port of 2.1.9 firmware #76066

    polskifacet
    Participant

    I ended up erasing the flash on my esp32 and then pulled the repo again. Great news, no more boot loop! I can log into web ui and confirmed the pins I have defined work as intended. Only thing that doesn’t work for me is the screen, seems like it loads the right library so not sure. I see one error at the end of this log “[ 17561][E][vfs_api.cpp:105] open(): /littlefs/logs/19521.txt does not exist, no permits for creation”

    Connecting in AP_STA to WiFi network Cisco
    IP received by client, restart.
    Prepare to restart…
    ets Jul 29 2019 12:21:46

    rst:0xc (SW_CPU_RESET),boot:0x17 (SPI_FAST_FLASH_BOOT)
    configsip: 0, SPIWP:0xee
    clk_drv:0x00,q_drv:0x00,d_drv:0x00,cs0_drv:0x00,hd_drv:0x00,wp_drv:0x00
    mode:DIO, clock div:1
    load:0x3fff0030,len:1184
    load:0x40078000,len:13220
    ho 0 tail 12 room 4
    load:0x40080400,len:3028
    entry 0x400805e4
    Build timestamp: Jun 13 2023 09:56:21
    — Starting setup
    Scanning i2c for devices…
    No I2C devices found
    Using GPIO IOEXP
    Starting to detect expanders
    hw_type = 172 hw_rev = 0
    Starting sensors – INPUT_PULLUP
    Sensor1 PIN: 36
    Sensor2 PIN: 2
    Starting RFTX pins
    RFTX PIN: 255
    LCD SSD1306 init
    Init file system…
    Flash size: 4194304 bytes
    Listing directory: /
    FILE: done.dat SIZE: 1
    FILE: iopts.dat SIZE: 64
    FILE: nvcon.dat SIZE: 16
    FILE: prog.dat SIZE: 1
    FILE: sopts.dat SIZE: 1920
    FILE: stns.dat SIZE: 17856
    Done.
    Detecting RTC…done.
    [ 1752][E][WiFiAP.cpp:141] softAP(): SSID missing!
    Starting AP with SSID
    — Setting up options
    — PD init
    — Time setup
    FILE: done.dat
    FILE: iopts.dat
    FILE: nvcon.dat
    FILE: prog.dat
    FILE: sopts.dat
    FILE: stns.dat
    Starting network
    ETH enabled: 0
    Wifi mode: STA
    OTF start with http_port 80
    Started OTF with just local connection
    DNSServer start
    Setting update server
    Started update server
    — MQTT Init
    2106-02-07 01:28:29 – MQTT Init
    2106-02-07 01:28:29 – MQTT Init: ClientId OS-A0B7654CB00C
    Setting up WiFi client
    Connecting in STA to WiFi network Cisco
    mDNS responder started
    req_mqtt_restart
    2106-02-07 01:28:30 – MQTT Begin
    2106-02-07 01:28:30 – MQTT Begin: Config (:1883 ) Disabled
    NTP Syncing…
    using default time servers
    1686675900
    weather.opensprinkler.com:80(0)
    &tz=32&sunrise=308&sunset=1222&eip=2728279798&rawData={“wp”:”Manual”}&errCode=0
    [ 17561][E][vfs_api.cpp:105] open(): /littlefs/logs/19521.txt does not exist, no permits for creation

    in reply to: ESP32 port of 2.1.9 firmware #76010

    polskifacet
    Participant

    The original 2.1.9 firmware port works, its a esp32 board with OLED built in. It’s the .96 (SSD1306) screen.

    https://randomnerdtutorials.com/esp32-built-in-oled-ssd1306/

    in reply to: ESP32 port of 2.1.9 firmware #75974

    polskifacet
    Participant

    compiles fine, screen doesn’t work. AP mode works, add my ssid etc, then reboots back to ap mode. Seems chip is warmer than with 2.1.9 original working firmware?

    Started update server
    — MQTT Init
    2106-02-07 01:28:34 – MQTT Init
    2106-02-07 01:28:34 – MQTT Init: ClientId OS-A0B7654CB00C
    Starting AP
    Starting AP with SSID OS_4CB00C
    Connecting in AP_STA to WiFi network Cisco
    IP received by client, restart.
    Prepare to restart…
    ets Jul 29 2019 12:21:46

    rst:0xc (SW_CPU_RESET),boot:0x17 (SPI_FAST_FLASH_BOOT)
    configsip: 0, SPIWP:0xee
    clk_drv:0x00,q_drv:0x00,d_drv:0x00,cs0_drv:0x00,hd_drv:0x00,wp_drv:0x00
    mode:DIO, clock div:2
    load:0x3fff0030,len:1184
    load:0x40078000,len:13192
    load:0x40080400,len:3028
    entry 0x400805e4
    Build timestamp: Jun 5 2023 20:20:19
    — Starting setup
    Scanning i2c for devices…
    No I2C devices found
    Using GPIO IOEXP
    Starting to detect expanders
    hw_type = 172 hw_rev = 0
    Starting sensors – INPUT_PULLUP
    Sensor1 PIN: 36
    Sensor2 PIN: 2
    Starting RFTX pins
    RFTX PIN: 255
    LCD SSD1306 init
    Init file system…
    Flash size: 4194304 bytes
    Done.
    Detecting RTC…done.
    — Setting up options
    Factory reset
    [ 16117][E][WiFiAP.cpp:141] softAP(): SSID missing!
    Starting AP with SSID
    — PD init
    — Time setup
    Starting network
    ETH enabled: 0
    Wifi mode: AP
    OTF start with http_port 80
    Started OTF with just local connection
    DNSServer start
    Setting update server
    Starting MDNS service
    [ 18814][E][ESPmDNS.cpp:148] addService(): Failed adding service _http._tcp.

    [ 18815][E][ESPmDNS.cpp:169] addServiceTxt(): Failed setting service TXT
    Started update server
    — MQTT Init
    2106-02-07 01:28:34 – MQTT Init
    2106-02-07 01:28:34 – MQTT Init: ClientId OS-A0B7654CB00C
    Starting AP
    Starting AP with SSID OS_4CB00C

    in reply to: ESP32 #75940

    polskifacet
    Participant

    Ray,
    Are most of your customers commerical? In a residential setting I don’t think I have seen more then 4 zones and that’s why esp32 is appealing. I get frustrated because it should be simple to have a generic version for esp8266 12e dev board for example which has more than 4 available gpios for relays or esp32 wroom dev board which has 8+. Both great options for a simple retrofit. Open garage is awesome in that respect.

    in reply to: ESP32 port of 2.1.9 firmware #75912

    polskifacet
    Participant

    I grabbed the new one and made pin changes etc. Same error coming up.

    ets Jul 29 2019 12:21:46

    rst:0xc (SW_CPU_RESET),boot:0x17 (SPI_FAST_FLASH_BOOT)
    configsip: 0, SPIWP:0xee
    clk_drv:0x00,q_drv:0x00,d_drv:0x00,cs0_drv:0x00,hd_drv:0x00,wp_drv:0x00
    mode:DIO, clock div:2
    load:0x3fff0030,len:1184
    load:0x40078000,len:13104
    load:0x40080400,len:3036
    entry 0x400805e4
    started
    Scanning i2c for devices…
    No I2C devices found
    Using GPIO IOEXP
    Starting to detect expanders
    hw_type = 172 hw_rev = 0
    Starting sensors – INPUT_PULLUP
    Sensor1 PIN: 36
    Sensor2 PIN: 2
    Starting RFTX pins
    RFTX PIN: 255
    LCD SSD1306 init
    Init file system…
    Flash size: 4194304 bytes
    Done.
    Detecting RTC
    SPIFFS dir:
    FILE: prog.dat
    FILE: done.dat
    FILE: 19501.txt
    FILE: 19503.txt
    FILE: iopts.dat
    FILE: sopts.dat
    FILE: stns.dat
    FILE: nvcon.dat
    Starting network

    assert failed: tcpip_send_msg_wait_sem IDF/components/lwip/lwip/src/api/tcpip.c:455 (Invalid mbox)

    Backtrace: 0x40083de5:0x3ffb24a0 0x4008c9d9:0x3ffb24c0 0x400923dd:0x3ffb24e0 0x40103001:0x3ffb2610 0x40115359:0x3ffb2640 0x401153b9:0x3ffb2660 0x401027b5:0x3ffb26b0 0x401748b1:0x3ffb26d0 0x40174934:0x3ffb2720 0x400e282a:0x3ffb2740 0x400e1ace:0x3ffb2760 0x400d5b81:0x3ffb2780 0x400d7173:0x3ffb27b0 0x400d9357:0x3ffb2800 0x400eb2ca:0x3ffb2820

    ELF file SHA256: 9a6f3cf3917bb35c

    in reply to: ESP32 port of 2.1.9 firmware #75907

    polskifacet
    Participant

    Looks like a network issue:
    assert failed: tcpip_send_msg_wait_sem IDF/components/lwip/lwip/src/api/tcpip.c:455 (Invalid mbox)

    Rebooting…
    ets Jul 29 2019 12:21:46

    rst:0xc (SW_CPU_RESET),boot:0x17 (SPI_FAST_FLASH_BOOT)
    configsip: 0, SPIWP:0xee
    clk_drv:0x00,q_drv:0x00,d_drv:0x00,cs0_drv:0x00,hd_drv:0x00,wp_drv:0x00
    mode:DIO, clock div:2
    load:0x3fff0030,len:1184
    load:0x40078000,len:13104
    load:0x40080400,len:3036
    entry 0x400805e4
    started
    Scanning i2c for devices…
    No I2C devices found
    Using GPIO IOEXP
    Starting to detect expanders
    hw_type = 172 hw_rev = 0
    Starting sensors – INPUT_PULLUP
    Sensor1 PIN: 36
    Sensor2 PIN: 2
    Starting RFTX pins
    RFTX PIN: 255
    Init file system
    SPIFFS dir:
    Starting network

    assert failed: tcpip_send_msg_wait_sem IDF/components/lwip/lwip/src/api/tcpip.c:455 (Invalid mbox)

    Backtrace: 0x40083de5:0x3ffb24a0 0x4008c9d9:0x3ffb24c0 0x400923dd:0x3ffb24e0 0x40102e4d:0x3ffb2610 0x4011518d:0x3ffb2640 0x401151ed:0x3ffb2660 0x40102601:0x3ffb26b0 0x401746e5:0x3ffb26d0 0x40174768:0x3ffb2720 0x400e26b2:0x3ffb2740 0x400e1956:0x3ffb2760 0x400d4965:0x3ffb2780 0x400d6ffb:0x3ffb27b0 0x400d91df:0x3ffb2800 0x400eb116:0x3ffb2820

    in reply to: ESP32 port of 2.1.9 firmware #75871

    polskifacet
    Participant

    Updated the files and get this. No human readable text. Seems the littleFS stuff is resolved? The screen doesn’t show anything and no AP to connect to.

    Reconnecting to /dev/ttyUSB4 Connected!
    怘�␆����fx␘␆~␀␘x␆f���f␆x�␀␘~␞␀f�␀�f�fx���f����x�f~␆f��f�fx�␀�␘␆x�␞��␀���f�������~f�␀���~f�␀�␞�����␆␀f�����␀f�␀��␞�~���␀␘�����xf␆���␀����枀f�怘�怘�怘�␘f����␆~␘f��fx�␀␀␘␆␞␀␀␘�xfx␆␘~␀␘�xx�x␘�x␘�␀␀␀␘␆␞␀␀␘��f����␘~␀␘�xx�x␘�x␘x␀␀␀␘␆␞␀␀��␘x␞��␘x�␀␘�xx�x␘�x␘x␀␀␀␘␆␞␀��␀␀␘␞���␘~␀␘�xx�x␘�xx␘x␀␀␀␘␆␞␀����␘xx��f␘~␀␘�xx�x␘�xx��␀␀␀␘␆␞␀����␘x~␘x�␘~␀␘�xx�x␘�xx�␞␀␀␀␘␆␞␀␀␘xx���x�~␀␘�xx�x␘�xx��␀␀␀␘␆␞␀���␞␆���x␆␘~␀␘�xx�x␘�xx��␀␀␀␘␆␞␀���␞␆��f␆␞�␀␘�xx�x␘�x~�x␀␀␀␘␆␞␀␀��f����fx�␀␘�xx�x␘�x~��␀␀␀␘␆␞␀␀��␀␘x~␘x�␀␘�xx�x␘�x~�␞␀␀␀␘␆␞␀␀␘x␘␞␘␆x�␀␘�xx�x␘�x~��␀␀␀␘␆␞␀␀␘xx␘�␆xf�~␀␘�xx�x␘�x~��␀␀␀␘␆␞␀␀␘x����xx�~␀␘�xx�x␘�x�␀␀␀␀␘␆␞␀␀��f␘xx���~␀␘�xx�x␘�x�␘x␀�␞��怘�怘�怘�怘�f␆�x␀␘x����f␀��␆�␀�xf␘␞�␀���xf����␀␘x␆␆x␀��␘␞␆�xf��f���怘�␘f������f���~������怘�f␆~␞␀␘�f~��␀␘x�␀␘x␀����␀��␘x�␘x␆␘~␘␞怘�怘�␘��␆~�␀␘��␀␘�␞ff�f�␀ff�f�f␞f␆␆f����␘����~␀␘f�␞␀␘�␞␀f␘�f␀�␆f�f��␀�␆��f����f��␞��␞���xf�~��f�␀�~␀␀␘�␀��␀f␘�f␀f~␀␘fxff���␞␆����fx␘�~�␀␘␀␀␘�␆�fx␘�~�␀␘␀␀␘��fx␘�~�␀␘␀␀␘�␞��␀�fx␘�~�␀␘␀␀␘����fx␘�~�␀␘␀␀␘�~␀�fx␘�~�␀␘␀␀�␞�����fx�␘������␀��␆���␞��␀␘x��x�~␘�␞������␆␆x�␀␘�xx�xx␀␀�x␀␘���f�������␘␘␞怘�����␆␆x�␀␘␆␞␀␀�␞�␀␀␀␘���f������x␆␀␘␞怘�����␆␆x�␀␘␆␞␀␀␘␀␘␞␀␀␘���f����x␀�xx�␞��f��`��f␀␀␘␆␞␀␀␘␀�昆␆␞怘�


    polskifacet
    Participant

    Should this work on a regular ESP8266 ESP-12F board? It compiles and uploads fine but all I get is a blinking wifi light and some weird characters in the serial console.

    in reply to: ESP32 port of 2.1.9 firmware #75840

    polskifacet
    Participant

    V1pr I really appreciate your work on this!

    in reply to: ESP32 port of 2.1.9 firmware #75825

    polskifacet
    Participant

    ets Jul 29 2019 12:21:46

    rst:0xc (SW_CPU_RESET),boot:0x17 (SPI_FAST_FLASH_BOOT)
    configsip: 0, SPIWP:0xee
    clk_drv:0x00,q_drv:0x00,d_drv:0x00,cs0_drv:0x00,hd_drv:0x00,wp_drv:0x00
    mode:DIO, clock div:2
    load:0x3fff0030,len:1184
    load:0x40078000,len:13104
    load:0x40080400,len:3036
    entry 0x400805e4
    [ 1693][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 1717][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 1717][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 1718][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 1723][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 1728][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 1734][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 1739][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 1745][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 1751][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 1756][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 1762][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 1767][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 1773][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 1778][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 1784][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 1789][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 1795][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 1801][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 1806][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 1812][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 1817][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 1823][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 1828][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 1834][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 1839][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 1845][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 1851][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 1856][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 1862][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 1867][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 1873][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 1878][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 1884][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 1889][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 1895][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 1901][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 1906][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 1912][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 1917][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 1923][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 1928][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 1934][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 1939][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 1945][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 1951][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 1956][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 1962][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 1967][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 1973][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 1978][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 1984][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 1989][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 1995][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 2001][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 2006][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 2012][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 2017][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 2023][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 2028][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 2034][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 2039][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 2045][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 2051][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 2056][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 2062][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 2067][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 2073][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 2078][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 2084][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 2089][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 2095][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 2101][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 2106][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 2112][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 2117][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 2123][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 2128][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 2134][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 2139][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 2145][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 2151][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 2156][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 2162][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 2167][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 2173][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 2178][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 2184][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 2189][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 2195][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 2201][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 2206][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 2212][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 2217][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 2223][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 2228][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 2234][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 2239][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 2245][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 2251][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 2256][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 2262][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 2267][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 2273][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 2278][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 2284][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 2289][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 2295][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 2301][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 2306][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 2312][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 2317][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 2323][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 2328][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 2334][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 2339][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 2345][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 2351][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 2356][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 2362][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 2367][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 2373][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 2378][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 2384][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 2389][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 2395][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 2401][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 2406][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 2412][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 2417][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 2423][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 2428][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 2434][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 2439][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 2445][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 2451][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 2456][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 2462][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 2467][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 2473][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 2478][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 2484][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 2489][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 2495][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 2501][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 2506][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 2512][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 2517][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 2523][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 2528][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 2534][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 2539][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 2545][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 2551][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 2556][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 2562][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 2567][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 2573][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 2578][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 2584][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 2589][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 2595][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 2601][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 2606][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 2612][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 2617][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 2623][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 2628][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 2634][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 2639][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 2645][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 2651][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 2656][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 2662][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 2667][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 2673][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 2678][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 2684][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 2689][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 2695][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 2701][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 2706][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 2712][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 2717][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 2723][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 2728][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 2734][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 2739][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 2745][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 2751][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 2756][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 2762][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 2767][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 2773][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 2778][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 2784][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 2789][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 2795][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 2801][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 2806][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 2812][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 2817][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 2823][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 2828][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 2834][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 2839][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 2845][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 2851][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 2856][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 2862][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 2867][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 2873][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 2878][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 2884][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 2889][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 2895][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 2901][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 2906][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 2912][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 2917][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 2923][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 2928][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 2934][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 2939][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 2945][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 2951][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 2956][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 2962][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 2967][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 2973][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 2978][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 2984][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 2989][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 2995][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 3001][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 3006][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 3012][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 3017][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 3023][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 3028][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 3034][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 3039][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 3045][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 3051][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 3056][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 3062][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 3067][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 3073][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 3078][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 3084][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 3089][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 3095][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 3101][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 3106][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 3112][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 3117][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 3123][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 3128][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 3134][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 3139][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 3145][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 3151][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 3156][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 3162][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 3167][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 3173][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 3178][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 3184][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 3189][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 3195][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 3201][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 3206][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 3212][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 3217][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 3223][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 3228][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 3234][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 3239][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 3245][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 3251][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 3256][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 3262][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 3267][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 3273][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 3278][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 3284][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 3289][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 3295][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 3301][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 3306][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 3312][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 3317][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 3323][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 3328][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 3334][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 3339][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 3345][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 3351][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 3356][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 3362][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 3367][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 3373][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 3378][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 3384][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 3389][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 3395][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 3401][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 3406][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 3412][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 3417][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 3423][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 3428][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 3434][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 3439][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 3445][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 3451][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 3456][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 3462][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 3467][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 3473][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 3478][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 3484][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 3489][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 3495][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 3501][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 3506][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 3512][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 3517][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 3523][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 3528][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 3534][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 3539][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 3545][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 3551][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 3556][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 3562][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 3567][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 3573][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 3578][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 3584][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 3589][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 3595][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 3601][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 3606][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 3612][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 3617][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 3623][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 3628][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 3634][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 3639][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 3645][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 3651][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 3656][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 3662][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 3667][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 3673][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 3678][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 6213][E][vfs_api.cpp:24] open(): File system is not mounted

    assert failed: tcpip_send_msg_wait_sem IDF/components/lwip/lwip/src/api/tcpip.c:455 (Invalid mbox)

    Backtrace: 0x40083de1:0x3ffb24b0 0x4008c999:0x3ffb24d0 0x4009239d:0x3ffb24f0 0x40100405:0x3ffb2620 0x4011263d:0x3ffb2650 0x4011269d:0x3ffb2670 0x400ffbb9:0x3ffb26c0 0x40171b99:0x3ffb26e0 0x40171c1c:0x3ffb2730 0x400e1c66:0x3ffb2750 0x400e0f0a:0x3ffb2770 0x400d46bd:0x3ffb2790 0x400d6bde:0x3ffb27c0 0x400d8cff:0x3ffb2800 0x400e9ef2:0x3ffb2820

    in reply to: ESP32 port of 2.1.9 firmware #75813

    polskifacet
    Participant

    ets Jul 29 2019 12:21:46

    rst:0xc (SW_CPU_RESET),boot:0x17 (SPI_FAST_FLASH_BOOT)
    configsip: 0, SPIWP:0xee
    clk_drv:0x00,q_drv:0x00,d_drv:0x00,cs0_drv:0x00,hd_drv:0x00,wp_drv:0x00
    mode:DIO, clock div:2
    load:0x3fff0030,len:1184
    load:0x40078000,len:13104
    load:0x40080400,len:3036
    entry 0x400805e4
    ./components/esp_littlefs/src/littlefs/lfs.c:1229:error: Corrupted dir pair at {0x0, 0x1}
    E (1559) esp_littlefs: mount failed, (-84)
    E (1560) esp_littlefs: Failed to initialize LittleFS
    [ 1582][E][LittleFS.cpp:95] begin(): Mounting LittleFS failed! Error: -1
    [ 6603][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 6630][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 6630][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 6630][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 6635][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 6641][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 6647][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 6652][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 6658][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 6663][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 6669][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 6674][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 6680][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 6685][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 6691][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 6697][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 6702][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 6708][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 6713][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 6719][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 6724][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 6730][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 6735][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 6741][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 6747][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 6752][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 6758][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 6763][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 6769][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 6774][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 6780][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 6785][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 6791][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 6797][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 6802][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 6808][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 6813][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 6819][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 6824][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 6830][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 6835][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 6841][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 6847][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 6852][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 6858][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 6863][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 6869][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 6874][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 6880][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 6885][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 6891][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 6897][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 6902][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 6908][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 6913][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 6919][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 6924][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 6930][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 6935][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 6941][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 6947][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 6952][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 6958][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 6963][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 6969][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 6974][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 6980][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 6985][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 6991][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 6997][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 7002][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 7008][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 7013][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 7019][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 7024][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 7030][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 7035][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 7041][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 7047][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 7052][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 7058][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 7063][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 7069][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 7074][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 7080][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 7085][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 7091][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 7097][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 7102][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 7108][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 7113][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 7119][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 7124][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 7130][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 7135][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 7141][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 7147][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 7152][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 7158][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 7163][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 7169][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 7174][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 7180][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 7185][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 7191][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 7197][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 7202][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 7208][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 7213][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 7219][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 7224][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 7230][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 7235][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 7241][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 7247][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 7252][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 7258][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 7263][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 7269][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 7274][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 7280][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 7285][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 7291][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 7297][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 7302][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 7308][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 7313][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 7319][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 7324][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 7330][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 7335][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 7341][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 7347][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 7352][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 7358][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 7363][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 7369][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 7374][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 7380][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 7385][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 7391][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 7397][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 7402][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 7408][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 7413][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 7419][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 7424][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 7430][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 7435][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 7441][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 7447][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 7452][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 7458][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 7463][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 7469][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 7474][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 7480][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 7485][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 7491][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 7497][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 7502][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 7508][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 7513][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 7519][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 7524][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 7530][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 7535][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 7541][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 7547][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 7552][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 7558][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 7563][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 7569][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 7574][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 7580][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 7585][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 7591][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 7597][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 7602][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 7608][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 7613][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 7619][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 7624][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 7630][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 7635][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 7641][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 7647][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 7652][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 7658][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 7663][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 7669][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 7674][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 7680][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 7685][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 7691][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 7697][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 7702][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 7708][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 7713][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 7719][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 7724][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 7730][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 7735][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 7741][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 7747][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 7752][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 7758][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 7763][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 7769][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 7774][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 7780][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 7785][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 7791][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 7797][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 7802][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 7808][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 7813][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 7819][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 7824][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 7830][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 7835][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 7841][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 7847][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 7852][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 7858][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 7863][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 7869][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 7874][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 7880][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 7885][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 7891][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 7897][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 7902][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 7908][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 7913][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 7919][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 7924][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 7930][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 7935][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 7941][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 7947][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 7952][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 7958][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 7963][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 7969][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 7974][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 7980][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 7985][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 7991][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 7997][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 8002][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 8008][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 8013][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 8019][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 8024][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 8030][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 8035][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 8041][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 8047][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 8052][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 8058][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 8063][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 8069][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 8074][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 8080][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 8085][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 8091][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 8097][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 8102][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 8108][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 8113][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 8119][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 8124][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 8130][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 8135][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 8141][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 8147][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 8152][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 8158][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 8163][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 8169][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 8174][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 8180][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 8185][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 8191][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 8197][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 8202][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 8208][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 8213][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 8219][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 8224][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 8230][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 8235][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 8241][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 8247][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 8252][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 8258][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 8263][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 8269][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 8274][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 8280][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 8285][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 8291][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 8297][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 8302][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 8308][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 8313][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 8319][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 8324][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 8330][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 8335][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 8341][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 8347][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 8352][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 8358][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 8363][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 8369][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 8374][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 8380][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 8385][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 8391][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 8397][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 8402][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 8408][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 8413][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 8419][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 8424][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 8430][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 8435][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 8441][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 8447][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 8452][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 8458][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 8463][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 8469][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 8474][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 8480][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 8485][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 8491][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 8497][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 8502][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 8508][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 8513][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 8519][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 8524][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 8530][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 8535][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 8541][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 8547][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 8552][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 8558][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 8563][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 8569][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 8574][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 8580][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 8585][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 8591][E][vfs_api.cpp:24] open(): File system is not mounted
    [ 11128][E][vfs_api.cpp:24] open(): File system is not mounted

    assert failed: tcpip_send_msg_wait_sem IDF/components/lwip/lwip/src/api/tcpip.c:455 (Invalid mbox)

    Backtrace: 0x40083de1:0x3ffb24b0 0x4008c9a5:0x3ffb24d0 0x400923a9:0x3ffb24f0 0x40100405:0x3ffb2620 0x4011286d:0x3ffb2650 0x401128cd:0x3ffb2670 0x400ffbb9:0x3ffb26c0 0x40171e79:0x3ffb26e0 0x40171efc:0x3ffb2730 0x400e1c6a:0x3ffb2750 0x400e0f0e:0x3ffb2770 0x400d46c1:0x3ffb2790 0x400d6be2:0x3ffb27c0 0x400d8d03:0x3ffb2800 0x400e9ef2:0x3ffb2820

    ELF file SHA256: 960cd075ff805be6

    in reply to: ESP32 port of 2.1.9 firmware #75808

    polskifacet
    Participant

    I didn’t make any changes as the original port worked/is working as is. Using gpio and yes on OLED screen.

    in reply to: ESP32 port of 2.1.9 firmware #75805

    polskifacet
    Participant

    It Compiled but I’m getting a bootloop:

    ELF file SHA256: ce25714c88ca94be

    Rebooting…
    ets Jul 29 2019 12:21:46

    rst:0xc (SW_CPU_RESET),boot:0x17 (SPI_FAST_FLASH_BOOT)
    configsip: 0, SPIWP:0xee
    clk_drv:0x00,q_drv:0x00,d_drv:0x00,cs0_drv:0x00,hd_drv:0x00,wp_drv:0x00
    mode:DIO, clock div:2
    load:0x3fff0030,len:1184
    load:0x40078000,len:13104
    load:0x40080400,len:3036
    entry 0x400805e4
    Guru Meditation Error: Core 1 panic’ed (Double exception).

    Core 1 register dump:
    PC : 0x4008cc0a PS : 0x00040036 A0 : 0x8018c2dc A1 : 0x3ffb0810
    A2 : 0x3ffb89dc A3 : 0x00000020 A4 : 0x00000000 A5 : 0x00000000
    A6 : 0x00000005 A7 : 0x00000001 A8 : 0x40080080 A9 : 0x3ffb08f0
    A10 : 0x00060236 A11 : 0x00040026 A12 : 0x0000fffe A13 : 0x00000000
    A14 : 0x00000000 A15 : 0x3ffb0874 SAR : 0x00000020 EXCCAUSE: 0x00000002
    EXCVADDR: 0xffffffe0 LBEG : 0x40089a28 LEND : 0x40089a3e LCOUNT : 0x00000000

    Backtrace: 0x4008cc07:0x3ffb0810 0x4018c2d9:0x3ffb0830 0x4008cc07:0x3ffb0850 0x4008cc07:0x3ffb0870 0x4008cc07:0x3ffb0890 0x4008cc07:0x3ffb08b0 0x4008cc07:0x3ffb08d0 0x4008cc07:0x3ffb08f0 0x4008007d:0x3ffb0810 0x400d6835:0x3ffb0830 0x4008cc07:0x3ffb0850 0x4008cc07:0x3ffb0870 0x4008cc07:0x3ffb0890 0x4008cc07:0x3ffb08b0 0x4008cc07:0x3ffb08d0 0x4008cc07:0x3ffb08f0 0x4008007d:0x3ffb0810 0x400d6835:0x3ffb0830 0x4008cc07:0x3ffb0850 0x4008cc07:0x3ffb0870 0x4008cc07:0x3ffb0890 0x4008cc07:0x3ffb08b0 0x4008cc07:0x3ffb08d0 0x4008cc07:0x3ffb08f0 0x4008007d:0x3ffb0810 0x400d6835:0x3ffb0830 0x4008cc07:0x3ffb0850 0x4008cc07:0x3ffb0870 0x4008cc07:0x3ffb0890 0x4008cc07:0x3ffb08b0 0x4008cc07:0x3ffb08d0 0x4008cc07:0x3ffb08f0 0x4008007d:0x3ffb0810 0x400d6835:0x3ffb0830 0x4008cc07:0x3ffb0850 0x4008cc07:0x3ffb0870 0x4008cc07:0x3ffb0890 0x4008cc07:0x3ffb08b0 0x4008cc07:0x3ffb08d0 0x4008cc07:0x3ffb08f0 0x4008007d:0x3ffb0810 0x400d6835:0x3ffb0830 0x4008cc07:0x3ffb0850 0x4008cc07:0x3ffb0870 0x4008cc07:0x3ffb0890 0x4008cc07:0x3ffb08b0 0x4008cc07:0x3ffb08d0 0x4008cc07:0x3ffb08f0 0x4008007d:0x3ffb0810 0x400d6835:0x3ffb0830 0x4008cc07:0x3ffb0850 0x4008cc07:0x3ffb0870 0x4008cc07:0x3ffb0890 0x4008cc07:0x3ffb08b0 0x4008cc07:0x3ffb08d0 0x4008cc07:0x3ffb08f0 0x4008007d:0x3ffb0810 0x400d6835:0x3ffb0830 0x4008cc07:0x3ffb0850 0x4008cc07:0x3ffb0870 0x4008cc07:0x3ffb0890 0x4008cc07:0x3ffb08b0 0x4008cc07:0x3ffb08d0 0x4008cc07:0x3ffb08f0 0x4008007d:0x3ffb0810 0x400d6835:0x3ffb0830 0x4008cc07:0x3ffb0850 0x4008cc07:0x3ffb0870 0x4008cc07:0x3ffb0890 0x4008cc07:0x3ffb08b0 0x4008cc07:0x3ffb08d0 0x4008cc07:0x3ffb08f0 0x4008007d:0x3ffb0810 0x400d6835:0x3ffb0830 0x4008cc07:0x3ffb0850 0x4008cc07:0x3ffb0870 0x4008cc07:0x3ffb0890 0x4008cc07:0x3ffb08b0 0x4008cc07:0x3ffb08d0 0x4008cc07:0x3ffb08f0 0x4008007d:0x3ffb0810 0x400d6835:0x3ffb0830 0x4008cc07:0x3ffb0850 0x4008cc07:0x3ffb0870 0x4008cc07:0x3ffb0890 0x4008cc07:0x3ffb08b0 0x4008cc07:0x3ffb08d0 0x4008cc07:0x3ffb08f0 0x4008007d:0x3ffb0810 0x400d6835:0x3ffb0830 0x4008cc07:0x3ffb0850 0x4008cc07:0x3ffb0870 0x4008cc07:0x3ffb0890 0x4008cc07:0x3ffb08b0 0x4008cc07:0x3ffb08d0 0x4008cc07:0x3ffb08f0 0x4008007d:0x3ffb0810 0x400d6835:0x3ffb0830 0x4008cc07:0x3ffb0850 0x4008cc07:0x3ffb0870 0x4008cc07:0x3ffb0890 |<-CONTINUES

    in reply to: ESP32 port of 2.1.9 firmware #75800

    polskifacet
    Participant

    I added the extra lines to .cpp

    int Esp32LocalClient::peek() {
    return client.peek();
    }

    void Esp32LocalClient::setTimeout(int timeout) {
    client.setTimeout(timeout);
    }
    void Esp32LocalClient::flush() {
    client.flush();
    }

    void Esp32LocalClient::stop() {
    client.stop();
    }
    #endif

    I’m not sure what to do in the .h

    .pio/libdeps/esp32_sprinkler/OpenThings-Framework-Firmware-Library/Esp32LocalServer.cpp: In member function ‘virtual OTF::LocalClient* OTF::Esp32LocalServer::acceptClient()’:
    .pio/libdeps/esp32_sprinkler/OpenThings-Framework-Firmware-Library/Esp32LocalServer.cpp:15:51: error: invalid new-expression of abstract class type ‘OTF::Esp32LocalClient’
    activeClient = new Esp32LocalClient(wiFiClient);
    ^
    In file included from .pio/libdeps/esp32_sprinkler/OpenThings-Framework-Firmware-Library/Esp32LocalServer.cpp:2:
    .pio/libdeps/esp32_sprinkler/OpenThings-Framework-Firmware-Library/Esp32LocalServer.h:11:9: note: because the following virtual functions are pure within ‘OTF::Esp32LocalClient’:
    class Esp32LocalClient : public LocalClient {
    ^~~~~~~~~~~~~~~~
    In file included from .pio/libdeps/esp32_sprinkler/OpenThings-Framework-Firmware-Library/Esp32LocalServer.h:5,
    from .pio/libdeps/esp32_sprinkler/OpenThings-Framework-Firmware-Library/Esp32LocalServer.cpp:2:
    .pio/libdeps/esp32_sprinkler/OpenThings-Framework-Firmware-Library/LocalServer.h:36:18: note: ‘virtual void OTF::LocalClient::flush()’
    virtual void flush() = 0;
    ^~~~~
    .pio/libdeps/esp32_sprinkler/OpenThings-Framework-Firmware-Library/LocalServer.h:37:18: note: ‘virtual void OTF::LocalClient::stop()’
    virtual void stop() = 0;
    ^~~~
    .pio/libdeps/esp32_sprinkler/OpenThings-Framework-Firmware-Library/Esp32LocalServer.cpp: At global scope:
    .pio/libdeps/esp32_sprinkler/OpenThings-Framework-Firmware-Library/Esp32LocalServer.cpp:58:6: error: no declaration matches ‘void OTF::Esp32LocalClient::flush()’
    void Esp32LocalClient::flush() {
    ^~~~~~~~~~~~~~~~
    .pio/libdeps/esp32_sprinkler/OpenThings-Framework-Firmware-Library/Esp32LocalServer.cpp:58:6: note: no functions named ‘void OTF::Esp32LocalClient::flush()’
    In file included from .pio/libdeps/esp32_sprinkler/OpenThings-Framework-Firmware-Library/Esp32LocalServer.cpp:2:
    .pio/libdeps/esp32_sprinkler/OpenThings-Framework-Firmware-Library/Esp32LocalServer.h:11:9: note: ‘class OTF::Esp32LocalClient’ defined here
    class Esp32LocalClient : public LocalClient {
    ^~~~~~~~~~~~~~~~
    .pio/libdeps/esp32_sprinkler/OpenThings-Framework-Firmware-Library/Esp32LocalServer.cpp:62:6: error: no declaration matches ‘void OTF::Esp32LocalClient::stop()’
    void Esp32LocalClient::stop() {
    ^~~~~~~~~~~~~~~~
    .pio/libdeps/esp32_sprinkler/OpenThings-Framework-Firmware-Library/Esp32LocalServer.cpp:62:6: note: no functions named ‘void OTF::Esp32LocalClient::stop()’
    In file included from .pio/libdeps/esp32_sprinkler/OpenThings-Framework-Firmware-Library/Esp32LocalServer.cpp:2:
    .pio/libdeps/esp32_sprinkler/OpenThings-Framework-Firmware-Library/Esp32LocalServer.h:11:9: note: ‘class OTF::Esp32LocalClient’ defined here
    class Esp32LocalClient : public LocalClient {
    ^~~~~~~~~~~~~~~~
    Compiling .pio/build/esp32_sprinkler/libefe/ESP32-ENC28J60/extmod/esp_eth_phy_enc28j60.c.o
    *** [.pio/build/esp32_sprinkler/lib941/OpenThings-Framework-Firmware-Library/Esp32LocalServer.cpp.o] Error 1
    .pio/libdeps/esp32_sprinkler/OpenThings-Framework-Firmware-Library/OpenThingsFramework.cpp: In constructor ‘OTF::OpenThingsFramework::OpenThingsFramework(uint16_t, char*, int)’:
    .pio/libdeps/esp32_sprinkler/OpenThings-Framework-Firmware-Library/OpenThingsFramework.cpp:23:21: error: ‘virtual void OTF::Esp32LocalServer::begin()’ is private within this context
    localServer.begin();
    ^
    In file included from .pio/libdeps/esp32_sprinkler/OpenThings-Framework-Firmware-Library/OpenThingsFramework.h:14,
    from .pio/libdeps/esp32_sprinkler/OpenThings-Framework-Firmware-Library/OpenThingsFramework.cpp:1:
    .pio/libdeps/esp32_sprinkler/OpenThings-Framework-Firmware-Library/Esp32LocalServer.h:30:12: note: declared private here
    void begin();
    ^~~~~
    *** [.pio/build/esp32_sprinkler/lib941/OpenThings-Framework-Firmware-Library/OpenThingsFramework.cpp.o] Error 1

    in reply to: ESP32 port of 2.1.9 firmware #75798

    polskifacet
    Participant

    Sorry I overlooked the part in the instructions where some code has to be added manually!

    in reply to: ESP32 port of 2.1.9 firmware #75797

    polskifacet
    Participant

    Getting an error when compiling:

    Compiling .pio/build/esp32_sprinkler/lib941/OpenThings-Framework-Firmware-Library/Response.cpp.o
    .pio/libdeps/esp32_sprinkler/OpenThings-Framework-Firmware-Library/Esp32LocalServer.cpp: In member function ‘virtual OTF::LocalClient* OTF::Esp32LocalServer::acceptClient()’:
    .pio/libdeps/esp32_sprinkler/OpenThings-Framework-Firmware-Library/Esp32LocalServer.cpp:15:51: error: invalid new-expression of abstract class type ‘OTF::Esp32LocalClient’
    activeClient = new Esp32LocalClient(wiFiClient);
    ^
    In file included from .pio/libdeps/esp32_sprinkler/OpenThings-Framework-Firmware-Library/Esp32LocalServer.cpp:2:
    .pio/libdeps/esp32_sprinkler/OpenThings-Framework-Firmware-Library/Esp32LocalServer.h:11:9: note: because the following virtual functions are pure within ‘OTF::Esp32LocalClient’:
    class Esp32LocalClient : public LocalClient {
    ^~~~~~~~~~~~~~~~
    In file included from .pio/libdeps/esp32_sprinkler/OpenThings-Framework-Firmware-Library/Esp32LocalServer.h:5,
    from .pio/libdeps/esp32_sprinkler/OpenThings-Framework-Firmware-Library/Esp32LocalServer.cpp:2:
    .pio/libdeps/esp32_sprinkler/OpenThings-Framework-Firmware-Library/LocalServer.h:36:18: note: ‘virtual void OTF::LocalClient::flush()’
    virtual void flush() = 0;
    ^~~~~
    .pio/libdeps/esp32_sprinkler/OpenThings-Framework-Firmware-Library/LocalServer.h:37:18: note: ‘virtual void OTF::LocalClient::stop()’
    virtual void stop() = 0;
    ^~~~
    *** [.pio/build/esp32_sprinkler/lib941/OpenThings-Framework-Firmware-Library/Esp32LocalServer.cpp.o] Error 1
    ============================================================== [FAILED] Took 26.75 seconds ==============================================================

    Environment Status Duration
    ————— ——– ————
    d1_mini SUCCESS 00:01:31.818
    esp32_sprinkler FAILED 00:00:26.754

    in reply to: ESP32 port of 2.1.9 firmware #75764

    polskifacet
    Participant

    V1pr thanks for your work compiling this for us that are less skilled!

Viewing 25 posts - 1 through 25 (of 32 total)