If you’re building a V1E machine and using the Jackpot, you DO NOT need to compile FluidNC. I’m just a glutton for punishment.
Today I’ve been trying to build the 8MB version of FluidNC onto my V1E ESP32. It’s the white version with the 12/19/23 RC designation on the underside.
I spotted the problem with the “littlefs” line being above the other partitions and fixed that.
; board_build.partitions = min_littlefs.csv ; For 4M ESP32
board_build.partitions = FluidNC/ld/esp32/app3M_spiffs1M_8MB.csv ; For 8Meg ESP32
; board_build.partitions = FluidNC/ld/esp32/app3M_spiffs9M_16MB.csv ; For 16Meg ESP32
board_build.filesystem = littlefs
And I get a success from PlatformIO:
But I get the “repeating reset” problem consistently on the board itself.
rst:0x3 (SW_RESET),boot:0x13 (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
ets Jul 29 2019 12:21:46
It builds the 4MB build fine, and it runs fine. The only 2 things I’ve noticed (and not solved) are that the version number is incomplete/wrong and it says noGit.
Grbl 3.0 [FluidNC v3.0.x (noGit) (wifi) '$' for help]
I download the repo for “FluidNC-3.7.14-webui3-test.” So I’m assuming there’s some flag or setting I’m missing.
I thought I’d ask here since it pertains to the V1E board. I did see that @Michael_Melancon has a short post on Discord regarding the “littlefs” issue.