Installing the latest (v0.12.0+) version of Klipper on a Neptune 4 Max

While this new version of Klipper is expected to work on the Neptune 4 Pro, Plus, and Max, it has currently only been tested on the Neptune 4 Max. This project is currently looking for testers to test compatibility with the Neptune 4 Pro and Plus.

Known issues

The following issues are known to affect this customized version of Kipper:
  1. There is a timing issue affecting the ability to save automatic bed leveling data. After using the LCD to perform an automatic bed level and then pressing the save button, a timing related error message may appear in the Fluidd/Mainsail console. Performing a FIRMWARE_RESTART, restarting Klipper or restarting the printer will fix the error. The automatic bed leveling data will be saved and used when Klipper restarts.
  2. On 2024-03-13, the feature max_accel_to_decel was deprecated in Klipper and replaced with a new minimum_cruise_ratio feature. The Neptune 4 Max supports a number of "performance modes", selectable with the LCD controller, which set a number of Klipper configuration values as determined by the file /home/mks/Desktop/myfile/znp/znp_tjc_klipper/elegoo_conf.ini. The updated version of Klipper ignores any attempts to set max_accel_to_decelminimum_cruise_ratio does not get set when the "performance mode" is set or changed, resulting in the default value (unless manually changed) always being used.

Recovery STM32F401 MCU images

These recovery images are only intended for recovering a system if something goes horribly wrong. They are not required during the normal installation process.

Installation directions:

  1. Update printer to stock firmware version v1.2.3.2
  2. SSH into printer (default user: mks default password: makerbase)
    Replace <IP_ADDRESS> with the IP address of your printer.
    ssh mks@<IP_ADDRESS>
  3. Stop running services
    1. Stop the Klipper service sudo systemctl stop klipper
    2. Stop the Klipper MCU service sudo systemctl stop klipper_mcu
    3. Stop the znp_tjc_klipper and io services sudo systemctl stop makerbase-client
  4. Backup stock files
    1. Backup Klipper mv ~/klipper ~/klipper.stock.v1.2.3.2
    2. Backup the Linux MCU firmware sudo mv /usr/local/bin/klipper_mcu /usr/local/bin/klipper_mcu.stock.v1.2.3.2
  5. Update the printer.cfg file
    Currently, using symlinks to maintain printer.cfg files does not work correctly.
    1. Backup the ~/klipper_config/klipper.cfg file cp ~/klipper_config/printer.cfg ~/klipper_config/printer.cfg.stock.v1.2.3.2
    2. Remove or comment out the max_accel_to_decel field in the [printer] section
    3. Update the [gcode_macro PRINT_END] section
      1. Remove the line {% set RUN_DECEL = printer.configfile.settings['printer'].max_accel_to_decel|float %}
      2. Remove ACCEL_TO_DECEL={RUN_DECEL} from the line SET_VELOCITY_LIMIT VELOCITY={RUN_VELOCITY} ACCEL={RUN_ACCEL} ACCEL_TO_DECEL={RUN_DECEL}
    4. Update the [gcode_macro CANCEL_PRINT] section
      1. Remove the line {% set RUN_DECEL = printer.configfile.settings['printer'].max_accel_to_decel|float %}
      2. Remove ACCEL_TO_DECEL={RUN_DECEL} from the line SET_VELOCITY_LIMIT VELOCITY={RUN_VELOCITY} ACCEL={RUN_ACCEL} ACCEL_TO_DECEL={RUN_DECEL}
  6. Clone Git repo git clone https://github.com/sandmmakers/klipper.git klipper.sandmmakers
  7. Create a Klipper symlink ln -s ~/klipper.sandmmakers ~/klipper
  8. Enter the klipper directory cd ~/klipper
  9. Checkout the patched branch git checkout sandmmakers-ElegooNeptune4Max-v1.2.3.2
  10. Build Klipper
    Every time the znp_tjc_klipper process starts, it will check if ~/klipper/klippy/chelper/c_helper.so exists. If it doesn't, znp_tjc_klipper will copy an incompatible version to that location. This incompatible version will cause the newly installed version of Klipper to fail to start with the error message:
    Internal error during connect: function/symbol 'extruder_stepper_free' not found in library '/home/mks/klipper.hybrid/klippy/chelper/c_helper.so': /home/mks/klipper.hybrid/klippy/chelper/c_helper.so: undefined symbol: extruder_stepper_free Once the underlying issue is corrected, use the "RESTART" command to reload the config and restart the host software. Printer is halted
    1. Ensure klippy/chelper/c_helper.so doesn't exist sudo rm -f klippy/chelper/c_helper.so
    2. Build klippy/chelper/c_helper.so ~/klippy-env/bin/python2 klippy/chelper/__init__.py
    3. (Optional) Prebuild all Klipper byte code ~/klippy-env/bin/python2 -m compileall klippy
  11. Build the Linux MCU firmware
    1. Delete any stale files make clean
    2. Configure the Linux MCU firmware
      1. Launch the configuration utility make menuconfig
      2. Select Linux process
      3. Press ESC to save and exit
    3. Delete any stale files make clean
    4. Build the firmware make
    5. Copy and rename the generated binary to /usr/local/bin/klipper_mcu sudo mv out/klipper.elf /usr/local/bin/klipper_mcu.sandmmakers
    6. Create symlink so new binary is used sudo ln -s /usr/local/bin/klipper_mcu.sandmmakers /usr/local/bin/klipper_mcu
  12. (Optional) Create the STM32F401 MCU firmware
    Building and flashing a new STM32F401 MCU firmware is optional and not required for correct operation. While there are two known methods for flashing a new STM32F401 MCU firmware, both require partially disassembling the printer. The first involves removing the front plastic cover to expose the SD card connector on the main board. Using this method, the flash binary file is given a particular name, placed on an SD card (which is inserted into the printer), and then the printer is powered on, causing the update process to begin. The other known method involves shorting two locations on the printer's mainboard while pressing the reset button (also on the mainboard). This places the printer in the STM32 bootloader mode, allowing for printer host-based utilities to read and write to the STM32F401 MCU's flash memory. Both of these approaches are cumbersome, error-prone, and dangerous. Since the stock version of the firmware is known to work, flashing the STM32F401 MCU is not recommended.
    1. Delete any stale files make clean
    2. Configure the STM32F401 MCU firmware
      1. Launch the configuration utility make menuconfig
      2. Select Enable extra low-level configuration options
      3. Set the Micro-controller Architecture field to STMicroelectronics STM32
      4. Set the Processor model field to STM32F401
      5. Ensure the Bootloader offset field is set to 32KiB bootloader
      6. Ensure the Clock Reference field to 8 MHz crystal
      7. Set the Communication interface to USART1 PA10/PA9
      8. Ensure the Baud rate for serial port field is set to 250000
      9. Ensure the GPIO pins to set at micro-controller startup field is blank
      10. Press ESC to save and exit
    3. Delete any stale files make clean
    4. Build the firmware make
    5. Copy out/klipper.bin to a PC
      The following command is performed on a PC, NOT the printer. Replace <IP_ADDRESS> with the IP address of your printer.
      scp mks@<IP_ADDRESS>:klipper/out/klipper.bin .
    6. Rename klipper.bin to elegoo_k1.bin
    7. Copy elegoo_k1.bin to the SD card included with the printer
    8. Insert into printer
      1. TBD (A non-printer partial disassembly method is currently under investigation)
    9. Restart printer
    10. Wait at least two minutes
    11. Turn off printer
    12. Insert the SD card back into the PC
    13. Verify the elegoo_k1.bin file has been replaced with elegoo_k1.CUR
  13. Reboot the computer
    If the printer currently off, just turn it on instead of rebooting.

    While the previously stopped services could be manually restarted, it is generally easier and safer to just reboot the printer.
    sudo reboot now