The Web Installer is now the recommended way to install, debug, maintain and upgrade FluidNC. See below if you want alternate methods.
In addition to installing FluidNC, Web Installer has an easy way to setup WiFi
The intent of this project is to remove the need to compile for most users.
Go to the FluidNC project page on Github
Click on the releases link on the right side of the page.
Click on the release that you want. You should generally use the latest non "Pre" release.
Download the zip file for your operating system (win64 for Windows and posix for Linux and Mac) from the Assets section of the release. You do not need to download the source code to use pre-compiled files.
Unzip it in a folder on your computer. Do not try to run from inside the zip file. Make sure it is fully extracted before you start. On some operating systems, like Windows, the folder should be on local drives, not a networked folder.
Connect the ESP32 via USB. It is best to remove all other USB/Serial devices while installing it because it might try the wrong one.
Run either install-wifi.bat or install-bt.bat (.sh on other OS's). Make sure you are running the script while in that that folder. It will run FluidTerm after it does the install. There are likely to be a few warnings, but they should go away after you do the next step. Close FluidTerm and do the next step.
If you are doing a first time install, run install-fs.bat (or .sh) to install the file system, including the WebUI. If you already have a config file or other files on an ESP32, they will be deleted, so this is not recommended for upgrading firmware.
You may notice a message like this E (38) SPIFFS: mount failed, -10025
on the first run of the firmware. This is normal. It only happens on the first boot and is formatting the flash file system. It could take a long time on ESP32s with larger flash memories.
You now need to load a config file. The instructions on how to do this are here.
Connecting .....___.....____.....
and it eventually times out see this FAQ entry.If you get strange repeating response like this. Try using the erase script in the release files.
rst:0x10 (RTCWDT_RTC_RESET),boot:0x13 (SPI_FAST_FLASH_BOOT)
invalid header: 0xffffffff
...
Fluidterm is a serial console that automatically loads when you are uploading firmware. This will show you the startup messages and allow you to interact with FluidNC. To close it you can send CTRL+] or close the window. You can run it at any time in the future with the **fluidterm.bat (or .sh) program in that folder.
If you have Wifi and the WebUI running, you can update via the FluidNC tab. This will not overwrite your config file. Click the yellow cloud icon to upload your compiled binary (.bin) file. The compiled binaries are in the bt or wifi folders of downloaded releases.
If the upgrade affects the WebUI, you will need to upload index.html.gz from the FluidNC/data folder of the repo by clicking on the green folder icon in the image above.
VS Code &PlatformIO is the only method we offer support for compiling. It allows us to control a lot more things than something like the Arduino IDE. We need to control libraries and the versions. Advanced users can use other methods, but please don't expect detailed help with that.
FluidNC supports both WiFi and Bluetooth connectivity. These libraries have a big impact on firmware size. By default only WiFi is enabled. You can use either one, both or none by changing the platformio.ini file.
Please use git to acquire the firmware source files. This will insure the version displayed is accurate and there is way for us to see any changes you may have made. If you do not use Git, we cannot support you.
There is a line near the top deafault_envs = wifi Change it per below.
Advanced users only. If you need help, you are probably not an advanced user yet.
The standard install method work fine for all chips 4M and larger. You just don't get access to the extra memory.
Most ESP32 modules have 4Meg of memory. We use a standard partition scheme to allocate this memory. FluidNC expects certain sections in the partition table, so we have a few recommended types for modules with larger memories.
The only way to do this is by compiling yourself with changes to the platformio.ini file. We would need to make major changes to our release system and install scripts to allow people to chose the memory size. We don't see this as a higher priority than many other things on our list at this time.
Find this section of the platformio.ini file and uncomment one of these three lines.
board_build.partitions = min_spiffs.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
You can get infomation about your memory size by running esptool.exe flash_id
(Win64 syntax). esptool is included with FluidNC releases and platformio with ESP32 framework. This data is also shown when you use our install scripts.
Detecting chip type... ESP32
Chip is ESP32-D0WD (revision 1)
Features: WiFi, BT, Dual Core, 240MHz, VRef calibration in efuse, Coding Scheme None
Crystal is 40MHz
MAC: 4c:11:ae:ea:7a:8c
Uploading stub...
Running stub...
Stub running...
Manufacturer: 20
Device: 4016
Detected flash size: 4MB
You need to create and upload a config file to tailor the firmware to your machine. If you do not do this, you will see this message [MSG:WARN: Cannot open config file:config.yaml]. That says it cannot find the default file called config.yaml. In this mode you can play with a virtual 3 axis machine. You can jog it and try a few things. You cannot do anything that requires feedback from a real machine like homing, probing or reading from an SD card.
If you have a working machine definition from Grbl_ESP32, you can use an automated method. See this FAQ entry.
The easiest way to upload a config file is via FluidTerm.
You can also upload a file via the WebUI. Be sure to send $Config/Filename=<yourfile.yaml> at the console and restart FluidNC. Make sure there is no space in front of the filename.
You can see all files that have been uploaded to the local file system with the $LocalFS/List command. This is a good way to check to see if the files have been uploaded.
When you compile yourself the versioning is meaningless because we do not know if any changes were made. The version string will look something like this
[FluidNC v3.1.4 (Devt-a39e92c-dirty) (wifi) '$' for help]
Whatever v3.x.x
is does not mean anything significant. (Devt-a39e92c-dirty)
indicates the git branch and last commit you pulled the source code from. dirty means there has been a change.
What have pull request guidelines that must be followed.
If you get a crash you typically get a backtrace report printed on the serial port before it reboots with a default config. This lists the memory address where the crash occurred and all the calling functions on the stack. It looks like this.
Backtrace:0x400EE971:0x3FFB2540 0x400E40D1:0x3FFB26C0 0x40081B4A:0x3FFB26F0 0x400FCC78:0x3FFB2710 0x400E05F2:0x3FFB2730 0x401A823B:0x3FFB2750 0x400DAA6B:0x3FFB2770 0x400DA48A:0x3FFB2790 0x400DA6CE:0x3FFB27B0 0x400DDAE7:0x3FFB27E0 0x4010BF1E:0x3FFB2820
In the FluidNC release package, we include files called wifi-firmware.elf (Executable and Linkable Format) and bt-firmware.elf that can decode the addresses to functions, files and line numbers.
You need a program called addr2line to do the decoding. This is installed with platformio and is the best way to get it.
For most people addr2line is located in the location listed below. You may need to search for it if it is not in that folder.
..\Users\<user>\.platformio\packages\toolchain-gccmingw32/bin/
In the folder that contains the elf file, send this command line with <user> replaced with your username and <addresses> replaced with the backtrace addresses
C:\Users\<user>\.platformio\packages\toolchain-gccmingw32/bin/addr2line.exe -a <addresses> -e wifi-firmware.elf
In my case the command line would look like this.
C:\Users\barto\.platformio\packages\toolchain-gccmingw32/bin/addr2line.exe -a 0x400EE979:0x3FFB2540 0x400E40D1:0x3FFB26C0 0x40081B4A:0x3FFB26F0 0x400FCC80:0x3FFB2710 0x400E05F2:0x3FFB2730 0x401A8243:0x3FFB2750 0x400DAA6B:0x3FFB2770 0x400DA48A:0x3FFB2790 0x400DA6CE:0x3FFB27B0 0x400DDAE7:0x3FFB27E0 0x4010BF26:0x3FFB2820 -e firmware.elf
addr2line does not come packaged with the macOS PlatformIO installer, but it is available via both macports and brew as part of the GNU Binutils package.
brew install binutils
port install binutils
Please note where binutils gets installed as it may vary between the two packaging tools. Brew installs it in /usr/local/opt/binutils/bin/
.
Following the example backtrace shown above, the syntax for running addr2line would look like so (assumes your cwd is the root FluidNC directory and you are running a wifi build):
/usr/local/opt/binutils/bin/addr2line -a 0x400EE979:0x3FFB2540 0x400E40D1:0x3FFB26C0 0x40081B4A:0x3FFB26F0 0x400FCC80:0x3FFB2710 0x400E05F2:0x3FFB2730 0x401A8243:0x3FFB2750 0x400DAA6B:0x3FFB2770 0x400DA48A:0x3FFB2790 0x400DA6CE:0x3FFB27B0 0x400DDAE7:0x3FFB27E0 0x4010BF26:0x3FFB2820 -e .pio/build/wifi/firmware.elf
A backtrace looks like this. The first line caused the error. The next line after that is what called the line before. You can trace the error all the way back to the beginning.
In this case it starts at Main.cpp and finally errors in strlen. You can look at the source code to see what each line does.
/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32-elf/src/newlib/newlib/libc/machine/xtensa/strlen.S:43
0x4010f61a
C:/Users/barto/.platformio/packages/framework-arduinoespressif32/cores/esp32/Print.h:67
0x40119511
C:/Users/barto/.platformio/packages/framework-arduinoespressif32/cores/esp32/Print.cpp:89
0x400e4662
C:\Users\barto\Documents\GitHub\FluidNC/FluidNC/src/Configuration/../MyIOStream.h:33
0x400e481d
C:\Users\barto\Documents\GitHub\FluidNC/FluidNC/src/Machine/Macros.cpp:15
0x400f1e61
C:\Users\barto\Documents\GitHub\FluidNC/FluidNC/src/Protocol.cpp:1110
0x400f1ee9
C:\Users\barto\Documents\GitHub\FluidNC/FluidNC/src/Protocol.cpp:805
0x400f2266
C:\Users\barto\Documents\GitHub\FluidNC/FluidNC/src/Protocol.cpp:339
0x400f2515
C:\Users\barto\Documents\GitHub\FluidNC/FluidNC/src/Protocol.cpp:269
0x400e55ed
C:\Users\barto\Documents\GitHub\FluidNC/FluidNC/src/Main.cpp:147
0x4011af91
C:/Users/barto/.platformio/packages/framework-arduinoespressif32/cores/esp32/main.cpp:50