├── .devcontainer ├── Dockerfile └── devcontainer.json ├── .editorconfig ├── .gitattributes ├── .github ├── FUNDING.yml ├── code_of_conduct.md ├── contributing.md └── pull_request_template.md ├── .gitignore ├── .vscode └── extensions.json ├── LICENSE ├── Makefile ├── Marlin ├── Configuration.h ├── Configuration_adv.h ├── Makefile ├── Marlin.ino ├── Version.h ├── config.ini ├── lib │ └── readme.txt └── src │ ├── HAL │ ├── AVR │ │ ├── HAL.cpp │ │ ├── HAL.h │ │ ├── HAL_SPI.cpp │ │ ├── MarlinSPI.h │ │ ├── MarlinSerial.cpp │ │ ├── MarlinSerial.h │ │ ├── Servo.cpp │ │ ├── ServoTimers.h │ │ ├── eeprom.cpp │ │ ├── endstop_interrupts.h │ │ ├── fast_pwm.cpp │ │ ├── fastio.cpp │ │ ├── fastio.h │ │ ├── fastio │ │ │ ├── fastio_1280.h │ │ │ ├── fastio_1281.h │ │ │ ├── fastio_168.h │ │ │ ├── fastio_644.h │ │ │ └── fastio_AT90USB.h │ │ ├── inc │ │ │ ├── Conditionals_LCD.h │ │ │ ├── Conditionals_adv.h │ │ │ ├── Conditionals_post.h │ │ │ └── SanityCheck.h │ │ ├── math.h │ │ ├── pinsDebug.h │ │ ├── pinsDebug_Teensyduino.h │ │ ├── pinsDebug_plus_70.h │ │ ├── spi_pins.h │ │ ├── timers.h │ │ └── u8g_com_HAL_AVR_sw_spi.cpp │ ├── DUE │ │ ├── HAL.cpp │ │ ├── HAL.h │ │ ├── HAL_SPI.cpp │ │ ├── InterruptVectors.cpp │ │ ├── InterruptVectors.h │ │ ├── MarlinSPI.h │ │ ├── MarlinSerial.cpp │ │ ├── MarlinSerial.h │ │ ├── MarlinSerialUSB.cpp │ │ ├── MarlinSerialUSB.h │ │ ├── MinSerial.cpp │ │ ├── Servo.cpp │ │ ├── ServoTimers.h │ │ ├── Tone.cpp │ │ ├── dogm │ │ │ ├── u8g_com_HAL_DUE_shared_hw_spi.cpp │ │ │ ├── u8g_com_HAL_DUE_st7920_sw_spi.cpp │ │ │ ├── u8g_com_HAL_DUE_sw_spi.cpp │ │ │ ├── u8g_com_HAL_DUE_sw_spi_shared.cpp │ │ │ └── u8g_com_HAL_DUE_sw_spi_shared.h │ │ ├── eeprom_flash.cpp │ │ ├── eeprom_wired.cpp │ │ ├── endstop_interrupts.h │ │ ├── fastio.h │ │ ├── fastio │ │ │ ├── G2_PWM.cpp │ │ │ ├── G2_PWM.h │ │ │ └── G2_pins.h │ │ ├── inc │ │ │ ├── Conditionals_LCD.h │ │ │ ├── Conditionals_adv.h │ │ │ ├── Conditionals_post.h │ │ │ └── SanityCheck.h │ │ ├── pinsDebug.h │ │ ├── spi_pins.h │ │ ├── timers.cpp │ │ ├── timers.h │ │ ├── upload_extra_script.py │ │ └── usb │ │ │ ├── arduino_due_x.h │ │ │ ├── compiler.h │ │ │ ├── conf_access.h │ │ │ ├── conf_clock.h │ │ │ ├── conf_usb.h │ │ │ ├── ctrl_access.c │ │ │ ├── ctrl_access.h │ │ │ ├── genclk.h │ │ │ ├── mrepeat.h │ │ │ ├── osc.h │ │ │ ├── pll.h │ │ │ ├── preprocessor.h │ │ │ ├── sbc_protocol.h │ │ │ ├── sd_mmc_spi_mem.cpp │ │ │ ├── sd_mmc_spi_mem.h │ │ │ ├── spc_protocol.h │ │ │ ├── stringz.h │ │ │ ├── sysclk.c │ │ │ ├── sysclk.h │ │ │ ├── tpaste.h │ │ │ ├── udc.c │ │ │ ├── udc.h │ │ │ ├── udc_desc.h │ │ │ ├── udd.h │ │ │ ├── udi.h │ │ │ ├── udi_cdc.c │ │ │ ├── udi_cdc.h │ │ │ ├── udi_cdc_conf.h │ │ │ ├── udi_cdc_desc.c │ │ │ ├── udi_composite_desc.c │ │ │ ├── udi_msc.c │ │ │ ├── udi_msc.h │ │ │ ├── uotghs_device_due.c │ │ │ ├── uotghs_device_due.h │ │ │ ├── uotghs_otg.h │ │ │ ├── usb_protocol.h │ │ │ ├── usb_protocol_cdc.h │ │ │ ├── usb_protocol_msc.h │ │ │ ├── usb_task.c │ │ │ └── usb_task.h │ ├── ESP32 │ │ ├── FlushableHardwareSerial.cpp │ │ ├── FlushableHardwareSerial.h │ │ ├── HAL.cpp │ │ ├── HAL.h │ │ ├── HAL_SPI.cpp │ │ ├── MarlinSPI.h │ │ ├── Servo.cpp │ │ ├── Servo.h │ │ ├── Tone.cpp │ │ ├── WebSocketSerial.cpp │ │ ├── WebSocketSerial.h │ │ ├── eeprom.cpp │ │ ├── endstop_interrupts.h │ │ ├── esp32.csv │ │ ├── fastio.h │ │ ├── i2s.cpp │ │ ├── i2s.h │ │ ├── inc │ │ │ ├── Conditionals_LCD.h │ │ │ ├── Conditionals_adv.h │ │ │ ├── Conditionals_post.h │ │ │ └── SanityCheck.h │ │ ├── ota.cpp │ │ ├── ota.h │ │ ├── servotimers.h │ │ ├── spi_pins.h │ │ ├── spiffs.cpp │ │ ├── spiffs.h │ │ ├── timers.cpp │ │ ├── timers.h │ │ ├── u8g_esp32_spi.cpp │ │ ├── web.cpp │ │ ├── web.h │ │ ├── wifi.cpp │ │ └── wifi.h │ ├── HAL.h │ ├── LINUX │ │ ├── HAL.cpp │ │ ├── HAL.h │ │ ├── MarlinSPI.h │ │ ├── arduino.cpp │ │ ├── eeprom.cpp │ │ ├── fastio.h │ │ ├── hardware │ │ │ ├── Clock.cpp │ │ │ ├── Clock.h │ │ │ ├── Gpio.cpp │ │ │ ├── Gpio.h │ │ │ ├── Heater.cpp │ │ │ ├── Heater.h │ │ │ ├── IOLoggerCSV.cpp │ │ │ ├── IOLoggerCSV.h │ │ │ ├── LinearAxis.cpp │ │ │ ├── LinearAxis.h │ │ │ ├── Timer.cpp │ │ │ └── Timer.h │ │ ├── inc │ │ │ ├── Conditionals_LCD.h │ │ │ ├── Conditionals_adv.h │ │ │ ├── Conditionals_post.h │ │ │ └── SanityCheck.h │ │ ├── include │ │ │ ├── Arduino.h │ │ │ ├── pinmapping.cpp │ │ │ ├── pinmapping.h │ │ │ └── serial.h │ │ ├── main.cpp │ │ ├── pinsDebug.h │ │ ├── servo_private.h │ │ ├── spi_pins.h │ │ ├── timers.cpp │ │ └── timers.h │ ├── LPC1768 │ │ ├── HAL.cpp │ │ ├── HAL.h │ │ ├── HAL_SPI.cpp │ │ ├── MarlinSPI.h │ │ ├── MarlinSerial.cpp │ │ ├── MarlinSerial.h │ │ ├── MinSerial.cpp │ │ ├── Servo.h │ │ ├── eeprom_flash.cpp │ │ ├── eeprom_sdcard.cpp │ │ ├── eeprom_wired.cpp │ │ ├── endstop_interrupts.h │ │ ├── fast_pwm.cpp │ │ ├── fastio.h │ │ ├── inc │ │ │ ├── Conditionals_LCD.h │ │ │ ├── Conditionals_adv.h │ │ │ ├── Conditionals_post.h │ │ │ └── SanityCheck.h │ │ ├── include │ │ │ ├── SPI.h │ │ │ ├── digipot_mcp4451_I2C_routines.c │ │ │ ├── digipot_mcp4451_I2C_routines.h │ │ │ ├── i2c_util.c │ │ │ └── i2c_util.h │ │ ├── pinsDebug.h │ │ ├── spi_pins.h │ │ ├── tft │ │ │ ├── tft_spi.cpp │ │ │ ├── tft_spi.h │ │ │ ├── xpt2046.cpp │ │ │ └── xpt2046.h │ │ ├── timers.cpp │ │ ├── timers.h │ │ ├── u8g │ │ │ ├── LCD_I2C_routines.cpp │ │ │ ├── LCD_I2C_routines.h │ │ │ ├── LCD_defines.h │ │ │ ├── LCD_delay.h │ │ │ ├── LCD_pin_routines.c │ │ │ ├── LCD_pin_routines.h │ │ │ ├── u8g_com_HAL_LPC1768_hw_spi.cpp │ │ │ ├── u8g_com_HAL_LPC1768_ssd_hw_i2c.cpp │ │ │ ├── u8g_com_HAL_LPC1768_st7920_hw_spi.cpp │ │ │ ├── u8g_com_HAL_LPC1768_st7920_sw_spi.cpp │ │ │ └── u8g_com_HAL_LPC1768_sw_spi.cpp │ │ ├── upload_extra_script.py │ │ ├── usb_serial.cpp │ │ └── win_usb_driver │ │ │ └── lpc176x_usb_driver.inf │ ├── NATIVE_SIM │ │ ├── HAL.h │ │ ├── MarlinSPI.h │ │ ├── fastio.h │ │ ├── inc │ │ │ ├── Conditionals_LCD.h │ │ │ ├── Conditionals_adv.h │ │ │ ├── Conditionals_post.h │ │ │ └── SanityCheck.h │ │ ├── pinsDebug.cpp │ │ ├── pinsDebug.h │ │ ├── servo_private.h │ │ ├── spi_pins.h │ │ ├── tft │ │ │ ├── tft_spi.h │ │ │ └── xpt2046.h │ │ ├── timers.h │ │ └── u8g │ │ │ ├── LCD_I2C_routines.cpp │ │ │ ├── LCD_I2C_routines.h │ │ │ ├── LCD_defines.h │ │ │ ├── LCD_delay.h │ │ │ ├── LCD_pin_routines.cpp │ │ │ ├── LCD_pin_routines.h │ │ │ ├── u8g_com_st7920_sw_spi.cpp │ │ │ └── u8g_com_sw_spi.cpp │ ├── SAMD21 │ │ ├── HAL.cpp │ │ ├── HAL.h │ │ ├── HAL_SPI.cpp │ │ ├── MarlinSPI.h │ │ ├── QSPIFlash.cpp │ │ ├── QSPIFlash.h │ │ ├── SAMD21.h │ │ ├── Servo.cpp │ │ ├── ServoTimers.h │ │ ├── eeprom_flash.cpp │ │ ├── eeprom_qspi.cpp │ │ ├── eeprom_wired.cpp │ │ ├── endstop_interrupts.h │ │ ├── fastio.h │ │ ├── inc │ │ │ ├── Conditionals_LCD.h │ │ │ ├── Conditionals_adv.h │ │ │ ├── Conditionals_post.h │ │ │ └── SanityCheck.h │ │ ├── pinsDebug.h │ │ ├── spi_pins.h │ │ ├── timers.cpp │ │ ├── timers.h │ │ └── u8g │ │ │ ├── LCD_I2C_routines.cpp │ │ │ ├── LCD_I2C_routines.h │ │ │ ├── LCD_defines.h │ │ │ ├── LCD_pin_routines.c │ │ │ ├── LCD_pin_routines.h │ │ │ └── u8g_com_HAL_samd21_shared_hw_spi.cpp │ ├── SAMD51 │ │ ├── HAL.cpp │ │ ├── HAL.h │ │ ├── HAL_SPI.cpp │ │ ├── MarlinSPI.h │ │ ├── MarlinSerial_AGCM4.cpp │ │ ├── MarlinSerial_AGCM4.h │ │ ├── QSPIFlash.cpp │ │ ├── QSPIFlash.h │ │ ├── SAMD51.h │ │ ├── Servo.cpp │ │ ├── ServoTimers.h │ │ ├── eeprom_flash.cpp │ │ ├── eeprom_qspi.cpp │ │ ├── eeprom_wired.cpp │ │ ├── endstop_interrupts.h │ │ ├── fastio.h │ │ ├── inc │ │ │ ├── Conditionals_LCD.h │ │ │ ├── Conditionals_adv.h │ │ │ ├── Conditionals_post.h │ │ │ └── SanityCheck.h │ │ ├── pinsDebug.h │ │ ├── spi_pins.h │ │ ├── timers.cpp │ │ └── timers.h │ ├── STM32 │ │ ├── HAL.cpp │ │ ├── HAL.h │ │ ├── HAL_SPI.cpp │ │ ├── MarlinSPI.cpp │ │ ├── MarlinSPI.h │ │ ├── MarlinSerial.cpp │ │ ├── MarlinSerial.h │ │ ├── MinSerial.cpp │ │ ├── README.md │ │ ├── Servo.cpp │ │ ├── Servo.h │ │ ├── eeprom_bl24cxx.cpp │ │ ├── eeprom_flash.cpp │ │ ├── eeprom_if_iic.cpp │ │ ├── eeprom_sdcard.cpp │ │ ├── eeprom_sram.cpp │ │ ├── eeprom_wired.cpp │ │ ├── endstop_interrupts.h │ │ ├── fast_pwm.cpp │ │ ├── fastio.cpp │ │ ├── fastio.h │ │ ├── inc │ │ │ ├── Conditionals_LCD.h │ │ │ ├── Conditionals_adv.h │ │ │ ├── Conditionals_post.h │ │ │ └── SanityCheck.h │ │ ├── msc_sd.cpp │ │ ├── msc_sd.h │ │ ├── pinsDebug.h │ │ ├── pins_Xref.h │ │ ├── sdio.cpp │ │ ├── sdio.h │ │ ├── spi_pins.h │ │ ├── tft │ │ │ ├── gt911.cpp │ │ │ ├── gt911.h │ │ │ ├── tft_fsmc.cpp │ │ │ ├── tft_fsmc.h │ │ │ ├── tft_ltdc.cpp │ │ │ ├── tft_ltdc.h │ │ │ ├── tft_spi.cpp │ │ │ ├── tft_spi.h │ │ │ ├── xpt2046.cpp │ │ │ └── xpt2046.h │ │ ├── timers.cpp │ │ ├── timers.h │ │ ├── usb_host.cpp │ │ ├── usb_host.h │ │ ├── usb_serial.cpp │ │ └── usb_serial.h │ ├── STM32F1 │ │ ├── HAL.cpp │ │ ├── HAL.h │ │ ├── HAL_SPI.cpp │ │ ├── MarlinSPI.h │ │ ├── MarlinSerial.cpp │ │ ├── MarlinSerial.h │ │ ├── MinSerial.cpp │ │ ├── README.md │ │ ├── SPI.cpp │ │ ├── SPI.h │ │ ├── Servo.cpp │ │ ├── Servo.h │ │ ├── build_flags.py │ │ ├── dogm │ │ │ └── u8g_com_stm32duino_swspi.cpp │ │ ├── eeprom_bl24cxx.cpp │ │ ├── eeprom_flash.cpp │ │ ├── eeprom_if_iic.cpp │ │ ├── eeprom_sdcard.cpp │ │ ├── eeprom_wired.cpp │ │ ├── endstop_interrupts.h │ │ ├── fast_pwm.cpp │ │ ├── fastio.h │ │ ├── inc │ │ │ ├── Conditionals_LCD.h │ │ │ ├── Conditionals_adv.h │ │ │ ├── Conditionals_post.h │ │ │ └── SanityCheck.h │ │ ├── maple_win_usb_driver │ │ │ └── maple_serial.inf │ │ ├── msc_sd.cpp │ │ ├── msc_sd.h │ │ ├── onboard_sd.cpp │ │ ├── onboard_sd.h │ │ ├── pinsDebug.h │ │ ├── sdio.cpp │ │ ├── sdio.h │ │ ├── spi_pins.h │ │ ├── tft │ │ │ ├── tft_fsmc.cpp │ │ │ ├── tft_fsmc.h │ │ │ ├── tft_spi.cpp │ │ │ ├── tft_spi.h │ │ │ ├── xpt2046.cpp │ │ │ └── xpt2046.h │ │ ├── timers.cpp │ │ └── timers.h │ ├── TEENSY31_32 │ │ ├── HAL.cpp │ │ ├── HAL.h │ │ ├── HAL_SPI.cpp │ │ ├── MarlinSPI.h │ │ ├── Servo.cpp │ │ ├── Servo.h │ │ ├── eeprom.cpp │ │ ├── endstop_interrupts.h │ │ ├── fastio.h │ │ ├── inc │ │ │ ├── Conditionals_LCD.h │ │ │ ├── Conditionals_adv.h │ │ │ ├── Conditionals_post.h │ │ │ └── SanityCheck.h │ │ ├── pinsDebug.h │ │ ├── spi_pins.h │ │ ├── timers.cpp │ │ └── timers.h │ ├── TEENSY35_36 │ │ ├── HAL.cpp │ │ ├── HAL.h │ │ ├── HAL_SPI.cpp │ │ ├── MarlinSPI.h │ │ ├── Servo.cpp │ │ ├── Servo.h │ │ ├── eeprom.cpp │ │ ├── endstop_interrupts.h │ │ ├── fastio.h │ │ ├── inc │ │ │ ├── Conditionals_LCD.h │ │ │ ├── Conditionals_adv.h │ │ │ ├── Conditionals_post.h │ │ │ └── SanityCheck.h │ │ ├── pinsDebug.h │ │ ├── spi_pins.h │ │ ├── timers.cpp │ │ └── timers.h │ ├── TEENSY40_41 │ │ ├── HAL.cpp │ │ ├── HAL.h │ │ ├── HAL_SPI.cpp │ │ ├── MarlinSPI.h │ │ ├── Servo.cpp │ │ ├── Servo.h │ │ ├── eeprom.cpp │ │ ├── endstop_interrupts.h │ │ ├── fastio.h │ │ ├── inc │ │ │ ├── Conditionals_LCD.h │ │ │ ├── Conditionals_adv.h │ │ │ ├── Conditionals_post.h │ │ │ └── SanityCheck.h │ │ ├── pinsDebug.h │ │ ├── spi_pins.h │ │ ├── timers.cpp │ │ └── timers.h │ ├── platforms.h │ └── shared │ │ ├── Delay.cpp │ │ ├── Delay.h │ │ ├── HAL.cpp │ │ ├── HAL_SPI.h │ │ ├── HAL_ST7920.h │ │ ├── Marduino.h │ │ ├── MinSerial.cpp │ │ ├── MinSerial.h │ │ ├── backtrace │ │ ├── backtrace.cpp │ │ ├── backtrace.h │ │ ├── unwarm.cpp │ │ ├── unwarm.h │ │ ├── unwarm_arm.cpp │ │ ├── unwarm_thumb.cpp │ │ ├── unwarmbytab.cpp │ │ ├── unwarmbytab.h │ │ ├── unwarmmem.cpp │ │ ├── unwarmmem.h │ │ ├── unwinder.cpp │ │ ├── unwinder.h │ │ ├── unwmemaccess.cpp │ │ └── unwmemaccess.h │ │ ├── cpu_exception │ │ ├── exception_arm.cpp │ │ ├── exception_hook.cpp │ │ └── exception_hook.h │ │ ├── eeprom_api.cpp │ │ ├── eeprom_api.h │ │ ├── eeprom_if.h │ │ ├── eeprom_if_i2c.cpp │ │ ├── eeprom_if_spi.cpp │ │ ├── esp_wifi.cpp │ │ ├── esp_wifi.h │ │ ├── fauxpins.h │ │ ├── math_32bit.h │ │ ├── progmem.h │ │ ├── servo.cpp │ │ ├── servo.h │ │ └── servo_private.h │ ├── MarlinCore.cpp │ ├── MarlinCore.h │ ├── core │ ├── boards.h │ ├── bug_on.h │ ├── debug_out.h │ ├── debug_section.h │ ├── drivers.h │ ├── language.h │ ├── macros.h │ ├── millis_t.h │ ├── multi_language.h │ ├── serial.cpp │ ├── serial.h │ ├── serial_base.h │ ├── serial_hook.h │ ├── types.h │ ├── utility.cpp │ └── utility.h │ ├── feature │ ├── adc │ │ ├── adc_mcp3426.cpp │ │ └── adc_mcp3426.h │ ├── ammeter.cpp │ ├── ammeter.h │ ├── babystep.cpp │ ├── babystep.h │ ├── backlash.cpp │ ├── backlash.h │ ├── baricuda.cpp │ ├── baricuda.h │ ├── bedlevel │ │ ├── abl │ │ │ ├── bbl.cpp │ │ │ └── bbl.h │ │ ├── bdl │ │ │ ├── bdl.cpp │ │ │ └── bdl.h │ │ ├── bedlevel.cpp │ │ ├── bedlevel.h │ │ ├── hilbert_curve.cpp │ │ ├── hilbert_curve.h │ │ ├── mbl │ │ │ ├── mesh_bed_leveling.cpp │ │ │ └── mesh_bed_leveling.h │ │ └── ubl │ │ │ ├── ubl.cpp │ │ │ ├── ubl.h │ │ │ ├── ubl_G29.cpp │ │ │ └── ubl_motion.cpp │ ├── binary_stream.cpp │ ├── binary_stream.h │ ├── bltouch.cpp │ ├── bltouch.h │ ├── cancel_object.cpp │ ├── cancel_object.h │ ├── caselight.cpp │ ├── caselight.h │ ├── closedloop.cpp │ ├── closedloop.h │ ├── controllerfan.cpp │ ├── controllerfan.h │ ├── cooler.cpp │ ├── cooler.h │ ├── dac │ │ ├── dac_dac084s085.cpp │ │ ├── dac_dac084s085.h │ │ ├── dac_mcp4728.cpp │ │ ├── dac_mcp4728.h │ │ ├── stepper_dac.cpp │ │ └── stepper_dac.h │ ├── digipot │ │ ├── digipot.h │ │ ├── digipot_mcp4018.cpp │ │ └── digipot_mcp4451.cpp │ ├── direct_stepping.cpp │ ├── direct_stepping.h │ ├── e_parser.cpp │ ├── e_parser.h │ ├── easythreed_ui.cpp │ ├── easythreed_ui.h │ ├── encoder_i2c.cpp │ ├── encoder_i2c.h │ ├── ethernet.cpp │ ├── ethernet.h │ ├── fancheck.cpp │ ├── fancheck.h │ ├── fanmux.cpp │ ├── fanmux.h │ ├── filwidth.cpp │ ├── filwidth.h │ ├── fwretract.cpp │ ├── fwretract.h │ ├── host_actions.cpp │ ├── host_actions.h │ ├── hotend_idle.cpp │ ├── hotend_idle.h │ ├── joystick.cpp │ ├── joystick.h │ ├── leds │ │ ├── blinkm.cpp │ │ ├── blinkm.h │ │ ├── leds.cpp │ │ ├── leds.h │ │ ├── neopixel.cpp │ │ ├── neopixel.h │ │ ├── pca9533.cpp │ │ ├── pca9533.h │ │ ├── pca9632.cpp │ │ ├── pca9632.h │ │ ├── printer_event_leds.cpp │ │ ├── printer_event_leds.h │ │ ├── tempstat.cpp │ │ └── tempstat.h │ ├── max7219.cpp │ ├── max7219.h │ ├── meatpack.cpp │ ├── meatpack.h │ ├── mixing.cpp │ ├── mixing.h │ ├── mmu │ │ ├── mmu.cpp │ │ ├── mmu.h │ │ ├── mmu2-serial-protocol.md │ │ ├── mmu2.cpp │ │ └── mmu2.h │ ├── password │ │ ├── password.cpp │ │ └── password.h │ ├── pause.cpp │ ├── pause.h │ ├── power.cpp │ ├── power.h │ ├── power_monitor.cpp │ ├── power_monitor.h │ ├── powerloss.cpp │ ├── powerloss.h │ ├── probe_temp_comp.cpp │ ├── probe_temp_comp.h │ ├── repeat.cpp │ ├── repeat.h │ ├── runout.cpp │ ├── runout.h │ ├── solenoid.cpp │ ├── solenoid.h │ ├── spindle_laser.cpp │ ├── spindle_laser.h │ ├── spindle_laser_types.h │ ├── stepper_driver_safety.cpp │ ├── stepper_driver_safety.h │ ├── tmc_util.cpp │ ├── tmc_util.h │ ├── tramming.cpp │ ├── tramming.h │ ├── twibus.cpp │ ├── twibus.h │ ├── x_twist.cpp │ ├── x_twist.h │ ├── z_stepper_align.cpp │ └── z_stepper_align.h │ ├── gcode │ ├── bedlevel │ │ ├── G26.cpp │ │ ├── G35.cpp │ │ ├── G42.cpp │ │ ├── M420.cpp │ │ ├── abl │ │ │ ├── G29.cpp │ │ │ └── M421.cpp │ │ ├── mbl │ │ │ ├── G29.cpp │ │ │ └── M421.cpp │ │ └── ubl │ │ │ ├── G29.cpp │ │ │ └── M421.cpp │ ├── calibrate │ │ ├── G28.cpp │ │ ├── G33.cpp │ │ ├── G34.cpp │ │ ├── G34_M422.cpp │ │ ├── G425.cpp │ │ ├── G76_M871.cpp │ │ ├── M100.cpp │ │ ├── M12.cpp │ │ ├── M425.cpp │ │ ├── M48.cpp │ │ ├── M665.cpp │ │ ├── M666.cpp │ │ └── M852.cpp │ ├── config │ │ ├── M200-M205.cpp │ │ ├── M217.cpp │ │ ├── M218.cpp │ │ ├── M220.cpp │ │ ├── M221.cpp │ │ ├── M281.cpp │ │ ├── M301.cpp │ │ ├── M302.cpp │ │ ├── M304.cpp │ │ ├── M305.cpp │ │ ├── M309.cpp │ │ ├── M43.cpp │ │ ├── M540.cpp │ │ ├── M575.cpp │ │ ├── M672.cpp │ │ └── M92.cpp │ ├── control │ │ ├── M10-M11.cpp │ │ ├── M108_M112_M410.cpp │ │ ├── M111.cpp │ │ ├── M120_M121.cpp │ │ ├── M17_M18_M84.cpp │ │ ├── M211.cpp │ │ ├── M226.cpp │ │ ├── M280.cpp │ │ ├── M282.cpp │ │ ├── M3-M5.cpp │ │ ├── M350_M351.cpp │ │ ├── M380_M381.cpp │ │ ├── M42.cpp │ │ ├── M605.cpp │ │ ├── M7-M9.cpp │ │ ├── M80_M81.cpp │ │ ├── M85.cpp │ │ ├── M993_M994.cpp │ │ ├── M997.cpp │ │ ├── M999.cpp │ │ └── T.cpp │ ├── eeprom │ │ └── M500-M504.cpp │ ├── feature │ │ ├── adc │ │ │ └── M3426.cpp │ │ ├── advance │ │ │ └── M900.cpp │ │ ├── baricuda │ │ │ └── M126-M129.cpp │ │ ├── camera │ │ │ └── M240.cpp │ │ ├── cancel │ │ │ └── M486.cpp │ │ ├── caselight │ │ │ └── M355.cpp │ │ ├── clean │ │ │ └── G12.cpp │ │ ├── controllerfan │ │ │ └── M710.cpp │ │ ├── digipot │ │ │ └── M907-M910.cpp │ │ ├── filwidth │ │ │ └── M404-M407.cpp │ │ ├── fwretract │ │ │ ├── G10_G11.cpp │ │ │ └── M207-M209.cpp │ │ ├── i2c │ │ │ └── M260_M261.cpp │ │ ├── input_shaping │ │ │ └── M593.cpp │ │ ├── leds │ │ │ ├── M150.cpp │ │ │ └── M7219.cpp │ │ ├── macro │ │ │ └── M810-M819.cpp │ │ ├── mixing │ │ │ ├── M163-M165.cpp │ │ │ └── M166.cpp │ │ ├── network │ │ │ └── M552-M554.cpp │ │ ├── password │ │ │ └── M510-M512.cpp │ │ ├── pause │ │ │ ├── G27.cpp │ │ │ ├── G60.cpp │ │ │ ├── G61.cpp │ │ │ ├── M125.cpp │ │ │ ├── M600.cpp │ │ │ ├── M603.cpp │ │ │ └── M701_M702.cpp │ │ ├── power_monitor │ │ │ └── M430.cpp │ │ ├── powerloss │ │ │ ├── M1000.cpp │ │ │ └── M413.cpp │ │ ├── prusa_MMU2 │ │ │ └── M403.cpp │ │ ├── runout │ │ │ └── M412.cpp │ │ └── trinamic │ │ │ ├── M122.cpp │ │ │ ├── M569.cpp │ │ │ ├── M906.cpp │ │ │ ├── M911-M914.cpp │ │ │ └── M919.cpp │ ├── gcode.cpp │ ├── gcode.h │ ├── gcode_d.cpp │ ├── geometry │ │ ├── G17-G19.cpp │ │ ├── G53-G59.cpp │ │ ├── G92.cpp │ │ └── M206_M428.cpp │ ├── host │ │ ├── M110.cpp │ │ ├── M113.cpp │ │ ├── M114.cpp │ │ ├── M115.cpp │ │ ├── M118.cpp │ │ ├── M119.cpp │ │ ├── M154.cpp │ │ ├── M16.cpp │ │ ├── M360.cpp │ │ └── M876.cpp │ ├── lcd │ │ ├── M0_M1.cpp │ │ ├── M117.cpp │ │ ├── M145.cpp │ │ ├── M250.cpp │ │ ├── M255.cpp │ │ ├── M256.cpp │ │ ├── M300.cpp │ │ ├── M414.cpp │ │ ├── M73.cpp │ │ └── M995.cpp │ ├── motion │ │ ├── G0_G1.cpp │ │ ├── G2_G3.cpp │ │ ├── G4.cpp │ │ ├── G5.cpp │ │ ├── G6.cpp │ │ ├── G80.cpp │ │ ├── M290.cpp │ │ └── M400.cpp │ ├── parser.cpp │ ├── parser.h │ ├── probe │ │ ├── G30.cpp │ │ ├── G31_G32.cpp │ │ ├── G38.cpp │ │ ├── M102.cpp │ │ ├── M401_M402.cpp │ │ ├── M423.cpp │ │ ├── M851.cpp │ │ └── M951.cpp │ ├── queue.cpp │ ├── queue.h │ ├── scara │ │ └── M360-M364.cpp │ ├── sd │ │ ├── M1001.cpp │ │ ├── M20.cpp │ │ ├── M21_M22.cpp │ │ ├── M23.cpp │ │ ├── M24_M25.cpp │ │ ├── M26.cpp │ │ ├── M27.cpp │ │ ├── M28_M29.cpp │ │ ├── M30.cpp │ │ ├── M32.cpp │ │ ├── M33.cpp │ │ ├── M34.cpp │ │ ├── M524.cpp │ │ ├── M808.cpp │ │ └── M928.cpp │ ├── stats │ │ ├── M31.cpp │ │ └── M75-M78.cpp │ ├── temp │ │ ├── M104_M109.cpp │ │ ├── M105.cpp │ │ ├── M106_M107.cpp │ │ ├── M123.cpp │ │ ├── M140_M190.cpp │ │ ├── M141_M191.cpp │ │ ├── M143_M193.cpp │ │ ├── M155.cpp │ │ ├── M192.cpp │ │ ├── M303.cpp │ │ └── M306.cpp │ └── units │ │ ├── G20_G21.cpp │ │ ├── M149.cpp │ │ └── M82_M83.cpp │ ├── inc │ ├── Changes.h │ ├── Conditionals_LCD.h │ ├── Conditionals_adv.h │ ├── Conditionals_post.h │ ├── MarlinConfig.h │ ├── MarlinConfigPre.h │ ├── SanityCheck.h │ ├── Version.h │ └── Warnings.cpp │ ├── lcd │ ├── HD44780 │ │ ├── lcdprint_hd44780.cpp │ │ ├── marlinui_HD44780.cpp │ │ └── marlinui_HD44780.h │ ├── TFTGLCD │ │ ├── lcdprint_TFTGLCD.cpp │ │ ├── marlinui_TFTGLCD.cpp │ │ └── marlinui_TFTGLCD.h │ ├── buttons.h │ ├── dogm │ │ ├── HAL_LCD_class_defines.h │ │ ├── HAL_LCD_com_defines.h │ │ ├── dogm_Bootscreen.h │ │ ├── dogm_Statusscreen.h │ │ ├── fontdata │ │ │ ├── fontdata_6x9_marlin.h │ │ │ ├── fontdata_ISO10646_1.h │ │ │ ├── langdata.h │ │ │ ├── langdata_an.h │ │ │ ├── langdata_bg.h │ │ │ ├── langdata_ca.h │ │ │ ├── langdata_cz.h │ │ │ ├── langdata_da.h │ │ │ ├── langdata_de.h │ │ │ ├── langdata_el.h │ │ │ ├── langdata_el_CY.h │ │ │ ├── langdata_en.h │ │ │ ├── langdata_es.h │ │ │ ├── langdata_eu.h │ │ │ ├── langdata_fi.h │ │ │ ├── langdata_fr.h │ │ │ ├── langdata_gl.h │ │ │ ├── langdata_hr.h │ │ │ ├── langdata_hu.h │ │ │ ├── langdata_it.h │ │ │ ├── langdata_jp_kana.h │ │ │ ├── langdata_ko_KR.h │ │ │ ├── langdata_nl.h │ │ │ ├── langdata_pl.h │ │ │ ├── langdata_pt.h │ │ │ ├── langdata_pt_br.h │ │ │ ├── langdata_ro.h │ │ │ ├── langdata_ru.h │ │ │ ├── langdata_sk.h │ │ │ ├── langdata_sv.h │ │ │ ├── langdata_test.h │ │ │ ├── langdata_tr.h │ │ │ ├── langdata_uk.h │ │ │ ├── langdata_vi.h │ │ │ ├── langdata_zh_CN.h │ │ │ └── langdata_zh_TW.h │ │ ├── lcdprint_u8g.cpp │ │ ├── marlinui_DOGM.cpp │ │ ├── marlinui_DOGM.h │ │ ├── status │ │ │ ├── ammeter.h │ │ │ ├── bed.h │ │ │ ├── chamber.h │ │ │ ├── combined.h │ │ │ ├── cooler.h │ │ │ ├── cutter.h │ │ │ ├── fan.h │ │ │ └── hotend.h │ │ ├── status_screen_DOGM.cpp │ │ ├── status_screen_lite_ST7920.cpp │ │ ├── status_screen_lite_ST7920.h │ │ ├── u8g_dev_ssd1306_sh1106_128x64_I2C.cpp │ │ ├── u8g_dev_ssd1309_12864.cpp │ │ ├── u8g_dev_st7565_64128n_HAL.cpp │ │ ├── u8g_dev_st7920_128x64_HAL.cpp │ │ ├── u8g_dev_tft_upscale_from_128x64.cpp │ │ ├── u8g_dev_uc1701_mini12864_HAL.cpp │ │ ├── u8g_fontutf8.cpp │ │ ├── u8g_fontutf8.h │ │ ├── ultralcd_st7920_u8glib_rrd_AVR.cpp │ │ └── ultralcd_st7920_u8glib_rrd_AVR.h │ ├── e3v2 │ │ ├── README.md │ │ ├── common │ │ │ ├── dwin_api.cpp │ │ │ ├── dwin_api.h │ │ │ ├── dwin_color.h │ │ │ ├── dwin_font.h │ │ │ ├── dwin_set.h │ │ │ ├── encoder.cpp │ │ │ └── encoder.h │ │ ├── creality │ │ │ ├── dwin.cpp │ │ │ ├── dwin.h │ │ │ ├── dwin_lcd.cpp │ │ │ └── dwin_lcd.h │ │ ├── jyersui │ │ │ ├── README.md │ │ │ ├── dwin.cpp │ │ │ ├── dwin.h │ │ │ ├── dwin_lcd.cpp │ │ │ └── dwin_lcd.h │ │ ├── marlinui │ │ │ ├── dwin_lcd.cpp │ │ │ ├── dwin_lcd.h │ │ │ ├── dwin_string.cpp │ │ │ ├── dwin_string.h │ │ │ ├── lcdprint_dwin.cpp │ │ │ ├── lcdprint_dwin.h │ │ │ ├── marlinui_dwin.h │ │ │ ├── ui_common.cpp │ │ │ └── ui_status_480x272.cpp │ │ └── proui │ │ │ ├── base64.hpp │ │ │ ├── bedlevel_tools.cpp │ │ │ ├── bedlevel_tools.h │ │ │ ├── dwin.cpp │ │ │ ├── dwin.h │ │ │ ├── dwin_defines.h │ │ │ ├── dwin_lcd.cpp │ │ │ ├── dwin_lcd.h │ │ │ ├── dwin_popup.cpp │ │ │ ├── dwin_popup.h │ │ │ ├── dwinui.cpp │ │ │ ├── dwinui.h │ │ │ ├── endstop_diag.cpp │ │ │ ├── endstop_diag.h │ │ │ ├── gcode_preview.cpp │ │ │ ├── gcode_preview.h │ │ │ ├── lockscreen.cpp │ │ │ ├── lockscreen.h │ │ │ ├── menus.cpp │ │ │ ├── menus.h │ │ │ ├── meshviewer.cpp │ │ │ ├── meshviewer.h │ │ │ ├── plot.cpp │ │ │ ├── plot.h │ │ │ ├── printstats.cpp │ │ │ └── printstats.h │ ├── extui │ │ ├── anycubic_chiron │ │ │ ├── FileNavigator.cpp │ │ │ ├── FileNavigator.h │ │ │ ├── Tunes.cpp │ │ │ ├── Tunes.h │ │ │ ├── chiron_extui.cpp │ │ │ ├── chiron_tft.cpp │ │ │ ├── chiron_tft.h │ │ │ └── chiron_tft_defs.h │ │ ├── anycubic_i3mega │ │ │ ├── anycubic_extui.cpp │ │ │ ├── anycubic_i3mega_lcd.cpp │ │ │ └── anycubic_i3mega_lcd.h │ │ ├── dgus │ │ │ ├── DGUSDisplay.cpp │ │ │ ├── DGUSDisplay.h │ │ │ ├── DGUSDisplayDef.h │ │ │ ├── DGUSScreenHandler.cpp │ │ │ ├── DGUSScreenHandler.h │ │ │ ├── DGUSScreenHandlerBase.h │ │ │ ├── DGUSVPVariable.h │ │ │ ├── dgus_extui.cpp │ │ │ ├── elegoo │ │ │ │ ├── DGUSDisplayDef.cpp │ │ │ │ └── DGUSDisplayDef.h │ │ │ ├── fysetc │ │ │ │ ├── DGUSDisplayDef.cpp │ │ │ │ ├── DGUSDisplayDef.h │ │ │ │ ├── DGUSScreenHandler.cpp │ │ │ │ └── DGUSScreenHandler.h │ │ │ ├── hiprecy │ │ │ │ ├── DGUSDisplayDef.cpp │ │ │ │ ├── DGUSDisplayDef.h │ │ │ │ ├── DGUSScreenHandler.cpp │ │ │ │ └── DGUSScreenHandler.h │ │ │ ├── mks │ │ │ │ ├── DGUSDisplayDef.cpp │ │ │ │ ├── DGUSDisplayDef.h │ │ │ │ ├── DGUSScreenHandler.cpp │ │ │ │ └── DGUSScreenHandler.h │ │ │ └── origin │ │ │ │ ├── DGUSDisplayDef.cpp │ │ │ │ ├── DGUSDisplayDef.h │ │ │ │ ├── DGUSScreenHandler.cpp │ │ │ │ └── DGUSScreenHandler.h │ │ ├── dgus_reloaded │ │ │ ├── DGUSDisplay.cpp │ │ │ ├── DGUSDisplay.h │ │ │ ├── DGUSRxHandler.cpp │ │ │ ├── DGUSRxHandler.h │ │ │ ├── DGUSScreenHandler.cpp │ │ │ ├── DGUSScreenHandler.h │ │ │ ├── DGUSSetupHandler.cpp │ │ │ ├── DGUSSetupHandler.h │ │ │ ├── DGUSTxHandler.cpp │ │ │ ├── DGUSTxHandler.h │ │ │ ├── config │ │ │ │ ├── DGUS_Addr.h │ │ │ │ ├── DGUS_Constants.h │ │ │ │ ├── DGUS_Control.h │ │ │ │ ├── DGUS_Data.h │ │ │ │ └── DGUS_Screen.h │ │ │ ├── definition │ │ │ │ ├── DGUS_ScreenAddrList.cpp │ │ │ │ ├── DGUS_ScreenAddrList.h │ │ │ │ ├── DGUS_ScreenSetup.cpp │ │ │ │ ├── DGUS_ScreenSetup.h │ │ │ │ ├── DGUS_VP.h │ │ │ │ ├── DGUS_VPList.cpp │ │ │ │ └── DGUS_VPList.h │ │ │ └── dgus_reloaded_extui.cpp │ │ ├── example │ │ │ └── example.cpp │ │ ├── ftdi_eve_touch_ui │ │ │ ├── archim2-flash │ │ │ │ ├── flash_storage.cpp │ │ │ │ ├── flash_storage.h │ │ │ │ ├── media_file_reader.cpp │ │ │ │ └── media_file_reader.h │ │ │ ├── bioprinter │ │ │ │ ├── advanced_settings.cpp │ │ │ │ ├── advanced_settings.h │ │ │ │ ├── confirm_home_e.cpp │ │ │ │ ├── confirm_home_e.h │ │ │ │ ├── confirm_home_xyz.cpp │ │ │ │ ├── confirm_home_xyz.h │ │ │ │ ├── main_menu.cpp │ │ │ │ ├── main_menu.h │ │ │ │ ├── printing_dialog_box.cpp │ │ │ │ ├── printing_dialog_box.h │ │ │ │ ├── screens.h │ │ │ │ ├── status_screen.cpp │ │ │ │ ├── status_screen.h │ │ │ │ ├── tune_menu.cpp │ │ │ │ ├── tune_menu.h │ │ │ │ ├── ui_landscape.h │ │ │ │ └── ui_portrait.h │ │ │ ├── cocoa_press │ │ │ │ ├── _bootscreen_landscape.h │ │ │ │ ├── about_screen.cpp │ │ │ │ ├── about_screen.h │ │ │ │ ├── advanced_settings_menu.cpp │ │ │ │ ├── advanced_settings_menu.h │ │ │ │ ├── cocoa_press_bitmap.h │ │ │ │ ├── cocoa_press_ui.h │ │ │ │ ├── confirm_start_print_dialog_box.cpp │ │ │ │ ├── confirm_start_print_dialog_box.h │ │ │ │ ├── files_screen.cpp │ │ │ │ ├── files_screen.h │ │ │ │ ├── leveling_menu.cpp │ │ │ │ ├── leveling_menu.h │ │ │ │ ├── load_chocolate.cpp │ │ │ │ ├── load_chocolate.h │ │ │ │ ├── main_menu.cpp │ │ │ │ ├── main_menu.h │ │ │ │ ├── move_e_screen.cpp │ │ │ │ ├── move_e_screen.h │ │ │ │ ├── move_xyz_screen.cpp │ │ │ │ ├── move_xyz_screen.h │ │ │ │ ├── preheat_menu.cpp │ │ │ │ ├── preheat_menu.h │ │ │ │ ├── preheat_screen.cpp │ │ │ │ ├── preheat_screen.h │ │ │ │ ├── screens.h │ │ │ │ ├── statistics_screen.cpp │ │ │ │ ├── statistics_screen.h │ │ │ │ ├── status_screen.cpp │ │ │ │ ├── status_screen.h │ │ │ │ ├── z_offset_screen.cpp │ │ │ │ ├── z_offset_screen.h │ │ │ │ ├── z_offset_wizard.cpp │ │ │ │ └── z_offset_wizard.h │ │ │ ├── compat.h │ │ │ ├── config.h │ │ │ ├── ftdi_eve_extui.cpp │ │ │ ├── ftdi_eve_lib │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── README.md │ │ │ │ ├── basic │ │ │ │ │ ├── boards.h │ │ │ │ │ ├── commands.cpp │ │ │ │ │ ├── commands.h │ │ │ │ │ ├── constants.h │ │ │ │ │ ├── display_list.h │ │ │ │ │ ├── ftdi_basic.h │ │ │ │ │ ├── registers_ft800.h │ │ │ │ │ ├── registers_ft810.h │ │ │ │ │ ├── resolutions.h │ │ │ │ │ ├── spi.cpp │ │ │ │ │ └── spi.h │ │ │ │ ├── compat.h │ │ │ │ ├── extended │ │ │ │ │ ├── adjuster_widget.cpp │ │ │ │ │ ├── adjuster_widget.h │ │ │ │ │ ├── arrows.cpp │ │ │ │ │ ├── arrows.h │ │ │ │ │ ├── bitmap_info.h │ │ │ │ │ ├── circular_progress.cpp │ │ │ │ │ ├── circular_progress.h │ │ │ │ │ ├── command_processor.cpp │ │ │ │ │ ├── command_processor.h │ │ │ │ │ ├── dl_cache.cpp │ │ │ │ │ ├── dl_cache.h │ │ │ │ │ ├── event_loop.cpp │ │ │ │ │ ├── event_loop.h │ │ │ │ │ ├── ftdi_extended.h │ │ │ │ │ ├── grid_layout.h │ │ │ │ │ ├── poly_ui.h │ │ │ │ │ ├── polygon.h │ │ │ │ │ ├── rgb_t.h │ │ │ │ │ ├── screen_types.cpp │ │ │ │ │ ├── screen_types.h │ │ │ │ │ ├── sound_list.h │ │ │ │ │ ├── sound_player.cpp │ │ │ │ │ ├── sound_player.h │ │ │ │ │ ├── text_box.cpp │ │ │ │ │ ├── text_box.h │ │ │ │ │ ├── text_ellipsis.cpp │ │ │ │ │ ├── text_ellipsis.h │ │ │ │ │ ├── tiny_timer.cpp │ │ │ │ │ ├── tiny_timer.h │ │ │ │ │ └── unicode │ │ │ │ │ │ ├── README.txt │ │ │ │ │ │ ├── cyrillic_char_set.cpp │ │ │ │ │ │ ├── cyrillic_char_set.h │ │ │ │ │ │ ├── cyrillic_char_set_bitmap_31.h │ │ │ │ │ │ ├── font_bitmaps.cpp │ │ │ │ │ │ ├── font_bitmaps.h │ │ │ │ │ │ ├── font_bitmaps │ │ │ │ │ │ ├── cyrillic_char_set_bitmap_31.png │ │ │ │ │ │ ├── cyrillic_char_set_bitmap_31.svg │ │ │ │ │ │ ├── romfont_31.pbm │ │ │ │ │ │ ├── romfont_31.png │ │ │ │ │ │ ├── western_char_set_bitmap_31.png │ │ │ │ │ │ └── western_char_set_bitmap_31.svg │ │ │ │ │ │ ├── font_size_t.cpp │ │ │ │ │ │ ├── font_size_t.h │ │ │ │ │ │ ├── standard_char_set.cpp │ │ │ │ │ │ ├── standard_char_set.h │ │ │ │ │ │ ├── unicode.cpp │ │ │ │ │ │ ├── unicode.h │ │ │ │ │ │ ├── western_char_set.cpp │ │ │ │ │ │ ├── western_char_set.h │ │ │ │ │ │ └── western_char_set_bitmap_31.h │ │ │ │ ├── ftdi_eve_lib.h │ │ │ │ └── scripts │ │ │ │ │ ├── file2cpp.py │ │ │ │ │ ├── font2cpp.py │ │ │ │ │ ├── img2cpp.py │ │ │ │ │ └── svg2cpp.py │ │ │ ├── generic │ │ │ │ ├── about_screen.cpp │ │ │ │ ├── about_screen.h │ │ │ │ ├── advanced_settings_menu.cpp │ │ │ │ ├── advanced_settings_menu.h │ │ │ │ ├── alert_dialog_box.cpp │ │ │ │ ├── alert_dialog_box.h │ │ │ │ ├── backlash_compensation_screen.cpp │ │ │ │ ├── backlash_compensation_screen.h │ │ │ │ ├── base_numeric_adjustment_screen.cpp │ │ │ │ ├── base_numeric_adjustment_screen.h │ │ │ │ ├── base_screen.cpp │ │ │ │ ├── base_screen.h │ │ │ │ ├── bed_mesh_base.cpp │ │ │ │ ├── bed_mesh_base.h │ │ │ │ ├── bed_mesh_edit_screen.cpp │ │ │ │ ├── bed_mesh_edit_screen.h │ │ │ │ ├── bed_mesh_view_screen.cpp │ │ │ │ ├── bed_mesh_view_screen.h │ │ │ │ ├── boot_screen.cpp │ │ │ │ ├── boot_screen.h │ │ │ │ ├── case_light_screen.cpp │ │ │ │ ├── case_light_screen.h │ │ │ │ ├── change_filament_screen.cpp │ │ │ │ ├── change_filament_screen.h │ │ │ │ ├── confirm_abort_print_dialog_box.cpp │ │ │ │ ├── confirm_abort_print_dialog_box.h │ │ │ │ ├── confirm_auto_calibration_dialog_box.cpp │ │ │ │ ├── confirm_auto_calibration_dialog_box.h │ │ │ │ ├── confirm_erase_flash_dialog_box.cpp │ │ │ │ ├── confirm_erase_flash_dialog_box.h │ │ │ │ ├── confirm_start_print_dialog_box.cpp │ │ │ │ ├── confirm_start_print_dialog_box.h │ │ │ │ ├── confirm_user_request_alert_box.cpp │ │ │ │ ├── confirm_user_request_alert_box.h │ │ │ │ ├── custom_user_menus.cpp │ │ │ │ ├── custom_user_menus.h │ │ │ │ ├── default_acceleration_screen.cpp │ │ │ │ ├── default_acceleration_screen.h │ │ │ │ ├── developer_menu.cpp │ │ │ │ ├── developer_menu.h │ │ │ │ ├── dialog_box_base_class.cpp │ │ │ │ ├── dialog_box_base_class.h │ │ │ │ ├── display_tuning_screen.cpp │ │ │ │ ├── display_tuning_screen.h │ │ │ │ ├── endstop_state_screen.cpp │ │ │ │ ├── endstop_state_screen.h │ │ │ │ ├── feedrate_percent_screen.cpp │ │ │ │ ├── feedrate_percent_screen.h │ │ │ │ ├── filament_menu.cpp │ │ │ │ ├── filament_menu.h │ │ │ │ ├── filament_runout_screen.cpp │ │ │ │ ├── filament_runout_screen.h │ │ │ │ ├── files_screen.cpp │ │ │ │ ├── files_screen.h │ │ │ │ ├── flow_percent_screen.cpp │ │ │ │ ├── flow_percent_screen.h │ │ │ │ ├── interface_settings_screen.cpp │ │ │ │ ├── interface_settings_screen.h │ │ │ │ ├── interface_sounds_screen.cpp │ │ │ │ ├── interface_sounds_screen.h │ │ │ │ ├── jerk_screen.cpp │ │ │ │ ├── jerk_screen.h │ │ │ │ ├── junction_deviation_screen.cpp │ │ │ │ ├── junction_deviation_screen.h │ │ │ │ ├── kill_screen.cpp │ │ │ │ ├── kill_screen.h │ │ │ │ ├── language_menu.cpp │ │ │ │ ├── language_menu.h │ │ │ │ ├── leveling_menu.cpp │ │ │ │ ├── leveling_menu.h │ │ │ │ ├── linear_advance_screen.cpp │ │ │ │ ├── linear_advance_screen.h │ │ │ │ ├── lock_screen.cpp │ │ │ │ ├── lock_screen.h │ │ │ │ ├── main_menu.cpp │ │ │ │ ├── main_menu.h │ │ │ │ ├── max_acceleration_screen.cpp │ │ │ │ ├── max_acceleration_screen.h │ │ │ │ ├── max_velocity_screen.cpp │ │ │ │ ├── max_velocity_screen.h │ │ │ │ ├── media_player_screen.cpp │ │ │ │ ├── media_player_screen.h │ │ │ │ ├── move_axis_screen.cpp │ │ │ │ ├── move_axis_screen.h │ │ │ │ ├── nozzle_offsets_screen.cpp │ │ │ │ ├── nozzle_offsets_screen.h │ │ │ │ ├── nudge_nozzle_screen.cpp │ │ │ │ ├── nudge_nozzle_screen.h │ │ │ │ ├── restore_failsafe_dialog_box.cpp │ │ │ │ ├── restore_failsafe_dialog_box.h │ │ │ │ ├── save_settings_dialog_box.cpp │ │ │ │ ├── save_settings_dialog_box.h │ │ │ │ ├── screens.h │ │ │ │ ├── spinner_dialog_box.cpp │ │ │ │ ├── spinner_dialog_box.h │ │ │ │ ├── statistics_screen.cpp │ │ │ │ ├── statistics_screen.h │ │ │ │ ├── status_screen.cpp │ │ │ │ ├── status_screen.h │ │ │ │ ├── stepper_bump_sensitivity_screen.cpp │ │ │ │ ├── stepper_bump_sensitivity_screen.h │ │ │ │ ├── stepper_current_screen.cpp │ │ │ │ ├── stepper_current_screen.h │ │ │ │ ├── steps_screen.cpp │ │ │ │ ├── steps_screen.h │ │ │ │ ├── stress_test_screen.cpp │ │ │ │ ├── stress_test_screen.h │ │ │ │ ├── string_format.cpp │ │ │ │ ├── string_format.h │ │ │ │ ├── temperature_screen.cpp │ │ │ │ ├── temperature_screen.h │ │ │ │ ├── touch_calibration_screen.cpp │ │ │ │ ├── touch_calibration_screen.h │ │ │ │ ├── touch_registers_screen.cpp │ │ │ │ ├── touch_registers_screen.h │ │ │ │ ├── tune_menu.cpp │ │ │ │ ├── tune_menu.h │ │ │ │ ├── widget_demo_screen.cpp │ │ │ │ ├── widget_demo_screen.h │ │ │ │ ├── z_offset_screen.cpp │ │ │ │ └── z_offset_screen.h │ │ │ ├── language │ │ │ │ ├── language.cpp │ │ │ │ ├── language.h │ │ │ │ └── language_en.h │ │ │ ├── pin_mappings.h │ │ │ ├── screen_data.h │ │ │ ├── screens.cpp │ │ │ ├── screens.h │ │ │ └── theme │ │ │ │ ├── bitmaps.h │ │ │ │ ├── colors.h │ │ │ │ ├── fonts.h │ │ │ │ ├── marlin_bootscreen_landscape.h │ │ │ │ ├── marlin_bootscreen_portrait.h │ │ │ │ ├── sounds.cpp │ │ │ │ ├── sounds.h │ │ │ │ └── theme.h │ │ ├── malyan │ │ │ ├── malyan.cpp │ │ │ ├── malyan.h │ │ │ └── malyan_extui.cpp │ │ ├── mks_ui │ │ │ ├── SPIFlashStorage.cpp │ │ │ ├── SPIFlashStorage.h │ │ │ ├── SPI_TFT.cpp │ │ │ ├── SPI_TFT.h │ │ │ ├── draw_about.cpp │ │ │ ├── draw_about.h │ │ │ ├── draw_acceleration_settings.cpp │ │ │ ├── draw_acceleration_settings.h │ │ │ ├── draw_advance_settings.cpp │ │ │ ├── draw_advance_settings.h │ │ │ ├── draw_auto_level_offset_settings.cpp │ │ │ ├── draw_auto_level_offset_settings.h │ │ │ ├── draw_baby_stepping.cpp │ │ │ ├── draw_baby_stepping.h │ │ │ ├── draw_change_speed.cpp │ │ │ ├── draw_change_speed.h │ │ │ ├── draw_cloud_bind.cpp │ │ │ ├── draw_cloud_bind.h │ │ │ ├── draw_dialog.cpp │ │ │ ├── draw_dialog.h │ │ │ ├── draw_eeprom_settings.cpp │ │ │ ├── draw_eeprom_settings.h │ │ │ ├── draw_encoder_settings.cpp │ │ │ ├── draw_encoder_settings.h │ │ │ ├── draw_error_message.cpp │ │ │ ├── draw_error_message.h │ │ │ ├── draw_extrusion.cpp │ │ │ ├── draw_extrusion.h │ │ │ ├── draw_fan.cpp │ │ │ ├── draw_fan.h │ │ │ ├── draw_filament_change.cpp │ │ │ ├── draw_filament_change.h │ │ │ ├── draw_filament_settings.cpp │ │ │ ├── draw_filament_settings.h │ │ │ ├── draw_gcode.cpp │ │ │ ├── draw_gcode.h │ │ │ ├── draw_home.cpp │ │ │ ├── draw_home.h │ │ │ ├── draw_homing_sensitivity_settings.cpp │ │ │ ├── draw_homing_sensitivity_settings.h │ │ │ ├── draw_jerk_settings.cpp │ │ │ ├── draw_jerk_settings.h │ │ │ ├── draw_keyboard.cpp │ │ │ ├── draw_keyboard.h │ │ │ ├── draw_language.cpp │ │ │ ├── draw_language.h │ │ │ ├── draw_level_settings.cpp │ │ │ ├── draw_level_settings.h │ │ │ ├── draw_machine_para.cpp │ │ │ ├── draw_machine_para.h │ │ │ ├── draw_machine_settings.cpp │ │ │ ├── draw_machine_settings.h │ │ │ ├── draw_manuaLevel.cpp │ │ │ ├── draw_manuaLevel.h │ │ │ ├── draw_max_feedrate_settings.cpp │ │ │ ├── draw_max_feedrate_settings.h │ │ │ ├── draw_media_select.cpp │ │ │ ├── draw_media_select.h │ │ │ ├── draw_more.cpp │ │ │ ├── draw_more.h │ │ │ ├── draw_motor_settings.cpp │ │ │ ├── draw_motor_settings.h │ │ │ ├── draw_move_motor.cpp │ │ │ ├── draw_move_motor.h │ │ │ ├── draw_number_key.cpp │ │ │ ├── draw_number_key.h │ │ │ ├── draw_operation.cpp │ │ │ ├── draw_operation.h │ │ │ ├── draw_pause_message.cpp │ │ │ ├── draw_pause_message.h │ │ │ ├── draw_pause_position.cpp │ │ │ ├── draw_pause_position.h │ │ │ ├── draw_preHeat.cpp │ │ │ ├── draw_preHeat.h │ │ │ ├── draw_print_file.cpp │ │ │ ├── draw_print_file.h │ │ │ ├── draw_printing.cpp │ │ │ ├── draw_printing.h │ │ │ ├── draw_ready_print.cpp │ │ │ ├── draw_ready_print.h │ │ │ ├── draw_set.cpp │ │ │ ├── draw_set.h │ │ │ ├── draw_step_settings.cpp │ │ │ ├── draw_step_settings.h │ │ │ ├── draw_tmc_current_settings.cpp │ │ │ ├── draw_tmc_current_settings.h │ │ │ ├── draw_tmc_step_mode_settings.cpp │ │ │ ├── draw_tmc_step_mode_settings.h │ │ │ ├── draw_tool.cpp │ │ │ ├── draw_tool.h │ │ │ ├── draw_touch_calibration.cpp │ │ │ ├── draw_touch_calibration.h │ │ │ ├── draw_tramming_pos_settings.cpp │ │ │ ├── draw_tramming_pos_settings.h │ │ │ ├── draw_ui.cpp │ │ │ ├── draw_ui.h │ │ │ ├── draw_wifi.cpp │ │ │ ├── draw_wifi.h │ │ │ ├── draw_wifi_list.cpp │ │ │ ├── draw_wifi_list.h │ │ │ ├── draw_wifi_settings.cpp │ │ │ ├── draw_wifi_settings.h │ │ │ ├── draw_wifi_tips.cpp │ │ │ ├── draw_wifi_tips.h │ │ │ ├── draw_z_offset_wizard.cpp │ │ │ ├── draw_z_offset_wizard.h │ │ │ ├── gb2312_puhui16.cpp │ │ │ ├── irq_overrid.cpp │ │ │ ├── mks_hardware.cpp │ │ │ ├── mks_hardware.h │ │ │ ├── pic_manager.cpp │ │ │ ├── pic_manager.h │ │ │ ├── printer_operation.cpp │ │ │ ├── printer_operation.h │ │ │ ├── tft_Language_en.h │ │ │ ├── tft_Language_fr.h │ │ │ ├── tft_Language_it.h │ │ │ ├── tft_Language_ru.h │ │ │ ├── tft_Language_s_cn.h │ │ │ ├── tft_Language_sp.h │ │ │ ├── tft_Language_t_cn.h │ │ │ ├── tft_lvgl_configuration.cpp │ │ │ ├── tft_lvgl_configuration.h │ │ │ ├── tft_multi_language.cpp │ │ │ ├── tft_multi_language.h │ │ │ ├── wifiSerial.h │ │ │ ├── wifiSerial_STM32.cpp │ │ │ ├── wifiSerial_STM32.h │ │ │ ├── wifiSerial_STM32F1.cpp │ │ │ ├── wifiSerial_STM32F1.h │ │ │ ├── wifi_module.cpp │ │ │ ├── wifi_module.h │ │ │ ├── wifi_upload.cpp │ │ │ └── wifi_upload.h │ │ ├── nextion │ │ │ ├── FileNavigator.cpp │ │ │ ├── FileNavigator.h │ │ │ ├── nextion_extui.cpp │ │ │ ├── nextion_tft.cpp │ │ │ ├── nextion_tft.h │ │ │ └── nextion_tft_defs.h │ │ ├── ui_api.cpp │ │ └── ui_api.h │ ├── language │ │ ├── language_an.h │ │ ├── language_bg.h │ │ ├── language_ca.h │ │ ├── language_cz.h │ │ ├── language_da.h │ │ ├── language_de.h │ │ ├── language_el.h │ │ ├── language_el_CY.h │ │ ├── language_el_gr.h │ │ ├── language_en.h │ │ ├── language_es.h │ │ ├── language_eu.h │ │ ├── language_fi.h │ │ ├── language_fr.h │ │ ├── language_gl.h │ │ ├── language_hr.h │ │ ├── language_hu.h │ │ ├── language_it.h │ │ ├── language_jp_kana.h │ │ ├── language_ko_KR.h │ │ ├── language_nl.h │ │ ├── language_pl.h │ │ ├── language_pt.h │ │ ├── language_pt_br.h │ │ ├── language_ro.h │ │ ├── language_ru.h │ │ ├── language_sk.h │ │ ├── language_sv.h │ │ ├── language_test.h │ │ ├── language_tr.h │ │ ├── language_uk.h │ │ ├── language_vi.h │ │ ├── language_zh_CN.h │ │ └── language_zh_TW.h │ ├── lcdprint.cpp │ ├── lcdprint.h │ ├── marlinui.cpp │ ├── marlinui.h │ ├── menu │ │ ├── game │ │ │ ├── brickout.cpp │ │ │ ├── brickout.h │ │ │ ├── game.cpp │ │ │ ├── game.h │ │ │ ├── invaders.cpp │ │ │ ├── invaders.h │ │ │ ├── maze.cpp │ │ │ ├── maze.h │ │ │ ├── snake.cpp │ │ │ ├── snake.h │ │ │ └── types.h │ │ ├── menu.cpp │ │ ├── menu.h │ │ ├── menu_addon.h │ │ ├── menu_advanced.cpp │ │ ├── menu_backlash.cpp │ │ ├── menu_bed_leveling.cpp │ │ ├── menu_bed_tramming.cpp │ │ ├── menu_cancelobject.cpp │ │ ├── menu_configuration.cpp │ │ ├── menu_delta_calibrate.cpp │ │ ├── menu_filament.cpp │ │ ├── menu_game.cpp │ │ ├── menu_info.cpp │ │ ├── menu_item.h │ │ ├── menu_job_recovery.cpp │ │ ├── menu_language.cpp │ │ ├── menu_led.cpp │ │ ├── menu_main.cpp │ │ ├── menu_media.cpp │ │ ├── menu_mixer.cpp │ │ ├── menu_mmu2.cpp │ │ ├── menu_mmu2.h │ │ ├── menu_motion.cpp │ │ ├── menu_password.cpp │ │ ├── menu_power_monitor.cpp │ │ ├── menu_probe_offset.cpp │ │ ├── menu_spindle_laser.cpp │ │ ├── menu_temperature.cpp │ │ ├── menu_tmc.cpp │ │ ├── menu_touch_screen.cpp │ │ ├── menu_tramming_wizard.cpp │ │ ├── menu_tune.cpp │ │ ├── menu_ubl.cpp │ │ └── menu_x_twist.cpp │ ├── scaled_tft.h │ ├── tft │ │ ├── bitmaps │ │ │ ├── back.bmp │ │ │ ├── bed.bmp │ │ │ ├── bed_heated.bmp │ │ │ ├── btn_42x39_rounded.bmp │ │ │ ├── btn_64x52_rounded.bmp │ │ │ ├── cancel.bmp │ │ │ ├── chamber.bmp │ │ │ ├── chamber_heated.bmp │ │ │ ├── confirm.bmp │ │ │ ├── decrease.bmp │ │ │ ├── directory.bmp │ │ │ ├── down.bmp │ │ │ ├── fan0.bmp │ │ │ ├── fan1.bmp │ │ │ ├── fan_fast0.bmp │ │ │ ├── fan_fast1.bmp │ │ │ ├── fan_slow0.bmp │ │ │ ├── fan_slow1.bmp │ │ │ ├── feedrate.bmp │ │ │ ├── flowrate.bmp │ │ │ ├── home.bmp │ │ │ ├── hotend.bmp │ │ │ ├── increase.bmp │ │ │ ├── left.bmp │ │ │ ├── leveling.bmp │ │ │ ├── marlin-logo │ │ │ │ ├── Marlin-1500x319.png │ │ │ │ ├── Marlin-195x59.png │ │ │ │ ├── Marlin-228x255-greyscale.png │ │ │ │ ├── Marlin-228x255.png │ │ │ │ ├── Marlin-280x200.png │ │ │ │ ├── Marlin-320x240.png │ │ │ │ ├── Marlin-480x319.png │ │ │ │ └── Marlin-480x320.png │ │ │ ├── menu.bmp │ │ │ ├── pause.bmp │ │ │ ├── refresh.bmp │ │ │ ├── right.bmp │ │ │ ├── sd.bmp │ │ │ ├── settings.bmp │ │ │ └── up.bmp │ │ ├── canvas.cpp │ │ ├── canvas.h │ │ ├── fontdata │ │ │ ├── fontdata_10x20.cpp │ │ │ ├── fontdata_ISO10646_1.cpp │ │ │ ├── helvetica_12_bold.cpp │ │ │ ├── helvetica_14.cpp │ │ │ ├── helvetica_18.cpp │ │ │ └── profont_22.cpp │ │ ├── images │ │ │ ├── back_32x32x4.cpp │ │ │ ├── background_320x30x16.cpp │ │ │ ├── bootscreen_112x38x1.cpp │ │ │ ├── bootscreen_195x59x16.cpp │ │ │ ├── bootscreen_228x255x2.cpp │ │ │ ├── bootscreen_228x255x4.cpp │ │ │ ├── bootscreen_320x240x16.cpp │ │ │ ├── bootscreen_480x320x16.cpp │ │ │ ├── btn_rounded_42x39x4.cpp │ │ │ ├── btn_rounded_64x52x4.cpp │ │ │ ├── cancel_64x64x4.cpp │ │ │ ├── chamber_64x64x4.cpp │ │ │ ├── confirm_64x64x4.cpp │ │ │ ├── decrease_64x64x4.cpp │ │ │ ├── directory_32x32x4.cpp │ │ │ ├── down_32x32x4.cpp │ │ │ ├── fan_64x64x4.cpp │ │ │ ├── fan_fast_64x64x4.cpp │ │ │ ├── fan_slow_64x64x4.cpp │ │ │ ├── feedrate_32x32x4.cpp │ │ │ ├── flowrate_32x32x4.cpp │ │ │ ├── heated_bed_64x64x4.cpp │ │ │ ├── home_64x64x4.cpp │ │ │ ├── hotend_64x64x4.cpp │ │ │ ├── increase_64x64x4.cpp │ │ │ ├── left_32x32x4.cpp │ │ │ ├── leveling_32x32x4.cpp │ │ │ ├── menu_64x64x4.cpp │ │ │ ├── pause_64x64x4.cpp │ │ │ ├── refresh_32x32x4.cpp │ │ │ ├── right_32x32x4.cpp │ │ │ ├── sd_64x64x4.cpp │ │ │ ├── settings_64x64x4.cpp │ │ │ ├── slider_8x16x4.cpp │ │ │ └── up_32x32x4.cpp │ │ ├── tft.cpp │ │ ├── tft.h │ │ ├── tft_color.h │ │ ├── tft_image.cpp │ │ ├── tft_image.h │ │ ├── tft_queue.cpp │ │ ├── tft_queue.h │ │ ├── tft_string.cpp │ │ ├── tft_string.h │ │ ├── touch.cpp │ │ ├── touch.h │ │ ├── ui_1024x600.cpp │ │ ├── ui_1024x600.h │ │ ├── ui_320x240.cpp │ │ ├── ui_320x240.h │ │ ├── ui_480x320.cpp │ │ ├── ui_480x320.h │ │ ├── ui_common.cpp │ │ └── ui_common.h │ ├── tft_io │ │ ├── ili9328.h │ │ ├── ili9341.h │ │ ├── ili9488.h │ │ ├── r65105.h │ │ ├── ssd1963.h │ │ ├── st7735.h │ │ ├── st7789v.h │ │ ├── st7796s.h │ │ ├── tft_ids.h │ │ ├── tft_io.cpp │ │ ├── tft_io.h │ │ ├── tft_orientation.h │ │ ├── touch_calibration.cpp │ │ └── touch_calibration.h │ ├── thermistornames.h │ ├── touch │ │ ├── touch_buttons.cpp │ │ └── touch_buttons.h │ ├── utf8.cpp │ └── utf8.h │ ├── libs │ ├── BL24CXX.cpp │ ├── BL24CXX.h │ ├── MAX31865.cpp │ ├── MAX31865.h │ ├── W25Qxx.cpp │ ├── W25Qxx.h │ ├── autoreport.h │ ├── bresenham.h │ ├── buzzer.cpp │ ├── buzzer.h │ ├── circularqueue.h │ ├── crc16.cpp │ ├── crc16.h │ ├── duration_t.h │ ├── heatshrink │ │ ├── LICENSE │ │ ├── heatshrink_common.h │ │ ├── heatshrink_config.h │ │ ├── heatshrink_decoder.cpp │ │ └── heatshrink_decoder.h │ ├── hex_print.cpp │ ├── hex_print.h │ ├── least_squares_fit.cpp │ ├── least_squares_fit.h │ ├── nozzle.cpp │ ├── nozzle.h │ ├── numtostr.cpp │ ├── numtostr.h │ ├── private_spi.h │ ├── softspi.h │ ├── stopwatch.cpp │ ├── stopwatch.h │ ├── vector_3.cpp │ └── vector_3.h │ ├── module │ ├── delta.cpp │ ├── delta.h │ ├── endstops.cpp │ ├── endstops.h │ ├── motion.cpp │ ├── motion.h │ ├── planner.cpp │ ├── planner.h │ ├── planner_bezier.cpp │ ├── planner_bezier.h │ ├── polargraph.cpp │ ├── polargraph.h │ ├── printcounter.cpp │ ├── printcounter.h │ ├── probe.cpp │ ├── probe.h │ ├── scara.cpp │ ├── scara.h │ ├── servo.cpp │ ├── servo.h │ ├── settings.cpp │ ├── settings.h │ ├── stepper.cpp │ ├── stepper.h │ ├── stepper │ │ ├── TMC26X.cpp │ │ ├── TMC26X.h │ │ ├── indirection.cpp │ │ ├── indirection.h │ │ ├── speed_lookuptable.h │ │ ├── trinamic.cpp │ │ └── trinamic.h │ ├── temperature.cpp │ ├── temperature.h │ ├── thermistor │ │ ├── thermistor_1.h │ │ ├── thermistor_10.h │ │ ├── thermistor_1010.h │ │ ├── thermistor_1022.h │ │ ├── thermistor_1047.h │ │ ├── thermistor_11.h │ │ ├── thermistor_110.h │ │ ├── thermistor_12.h │ │ ├── thermistor_13.h │ │ ├── thermistor_14.h │ │ ├── thermistor_147.h │ │ ├── thermistor_15.h │ │ ├── thermistor_17.h │ │ ├── thermistor_18.h │ │ ├── thermistor_2.h │ │ ├── thermistor_20.h │ │ ├── thermistor_2000.h │ │ ├── thermistor_201.h │ │ ├── thermistor_202.h │ │ ├── thermistor_21.h │ │ ├── thermistor_22.h │ │ ├── thermistor_23.h │ │ ├── thermistor_3.h │ │ ├── thermistor_30.h │ │ ├── thermistor_331.h │ │ ├── thermistor_332.h │ │ ├── thermistor_4.h │ │ ├── thermistor_5.h │ │ ├── thermistor_501.h │ │ ├── thermistor_502.h │ │ ├── thermistor_503.h │ │ ├── thermistor_504.h │ │ ├── thermistor_505.h │ │ ├── thermistor_51.h │ │ ├── thermistor_512.h │ │ ├── thermistor_52.h │ │ ├── thermistor_55.h │ │ ├── thermistor_6.h │ │ ├── thermistor_60.h │ │ ├── thermistor_61.h │ │ ├── thermistor_66.h │ │ ├── thermistor_666.h │ │ ├── thermistor_67.h │ │ ├── thermistor_68.h │ │ ├── thermistor_7.h │ │ ├── thermistor_70.h │ │ ├── thermistor_71.h │ │ ├── thermistor_75.h │ │ ├── thermistor_8.h │ │ ├── thermistor_9.h │ │ ├── thermistor_99.h │ │ ├── thermistor_998.h │ │ ├── thermistor_999.h │ │ └── thermistors.h │ ├── tool_change.cpp │ └── tool_change.h │ ├── pins │ ├── esp32 │ │ ├── env_validate.h │ │ ├── pins_E4D.h │ │ ├── pins_ENWI_ESPNP.h │ │ ├── pins_ESP32.h │ │ ├── pins_ESPA_common.h │ │ ├── pins_FYSETC_E4.h │ │ ├── pins_MKS_TINYBEE.h │ │ ├── pins_MRR_ESPA.h │ │ ├── pins_MRR_ESPE.h │ │ ├── pins_PANDA_M4.h │ │ ├── pins_PANDA_ZHU.h │ │ ├── pins_PANDA_common.h │ │ └── pins_RESP32_CUSTOM.h │ ├── gd32f1 │ │ ├── env_validate.h │ │ └── pins_SOVOL_V131.h │ ├── linux │ │ └── pins_RAMPS_LINUX.h │ ├── lpc1768 │ │ ├── env_validate.h │ │ ├── pins_AZSMZ_MINI.h │ │ ├── pins_BIQU_B300_V1.0.h │ │ ├── pins_BIQU_BQ111_A4.h │ │ ├── pins_BTT_SKR_V1_1.h │ │ ├── pins_BTT_SKR_V1_3.h │ │ ├── pins_BTT_SKR_V1_4.h │ │ ├── pins_BTT_SKR_common.h │ │ ├── pins_EMOTRONIC.h │ │ ├── pins_GMARSH_X6_REV1.h │ │ ├── pins_MKS_SBASE.h │ │ ├── pins_MKS_SGEN_L.h │ │ ├── pins_RAMPS_RE_ARM.h │ │ └── pins_SELENA_COMPACT.h │ ├── lpc1769 │ │ ├── env_validate.h │ │ ├── pins_AZTEEG_X5_GT.h │ │ ├── pins_AZTEEG_X5_MINI.h │ │ ├── pins_AZTEEG_X5_MINI_WIFI.h │ │ ├── pins_BTT_SKR_E3_TURBO.h │ │ ├── pins_BTT_SKR_V1_4_TURBO.h │ │ ├── pins_COHESION3D_MINI.h │ │ ├── pins_COHESION3D_REMIX.h │ │ ├── pins_FLY_CDY.h │ │ ├── pins_MKS_SGEN.h │ │ ├── pins_MKS_SGEN_L_V2.h │ │ ├── pins_SMOOTHIEBOARD.h │ │ └── pins_TH3D_EZBOARD.h │ ├── mega │ │ ├── env_validate.h │ │ ├── pins_CHEAPTRONIC.h │ │ ├── pins_CHEAPTRONICv2.h │ │ ├── pins_CNCONTROLS_11.h │ │ ├── pins_CNCONTROLS_12.h │ │ ├── pins_CNCONTROLS_15.h │ │ ├── pins_EINSTART-S.h │ │ ├── pins_ELEFU_3.h │ │ ├── pins_GT2560_REV_A.h │ │ ├── pins_GT2560_REV_A_PLUS.h │ │ ├── pins_GT2560_REV_B.h │ │ ├── pins_GT2560_V3.h │ │ ├── pins_GT2560_V3_A20.h │ │ ├── pins_GT2560_V3_MC2.h │ │ ├── pins_GT2560_V4.h │ │ ├── pins_GT2560_V4_A20.h │ │ ├── pins_HJC2560C_REV2.h │ │ ├── pins_INTAMSYS40.h │ │ ├── pins_LEAPFROG.h │ │ ├── pins_LEAPFROG_XEED2015.h │ │ ├── pins_MALYAN_M180.h │ │ ├── pins_MEGACONTROLLER.h │ │ ├── pins_MEGATRONICS.h │ │ ├── pins_MEGATRONICS_2.h │ │ ├── pins_MEGATRONICS_3.h │ │ ├── pins_MIGHTYBOARD_REVE.h │ │ ├── pins_MINITRONICS.h │ │ ├── pins_OVERLORD.h │ │ ├── pins_PICA.h │ │ ├── pins_PICAOLD.h │ │ ├── pins_PROTONEER_CNC_SHIELD_V3.h │ │ ├── pins_SILVER_GATE.h │ │ ├── pins_WANHAO_ONEPLUS.h │ │ └── pins_WEEDO_62A.h │ ├── pins.h │ ├── pinsDebug.h │ ├── pinsDebug_list.h │ ├── pins_postprocess.h │ ├── rambo │ │ ├── env_validate.h │ │ ├── pins_EINSY_RAMBO.h │ │ ├── pins_EINSY_RETRO.h │ │ ├── pins_MINIRAMBO.h │ │ ├── pins_RAMBO.h │ │ ├── pins_RAMBO_THINKERV2.h │ │ └── pins_SCOOVO_X9H.h │ ├── ramps │ │ ├── env_validate.h │ │ ├── pins_3DRAG.h │ │ ├── pins_AZTEEG_X3.h │ │ ├── pins_AZTEEG_X3_PRO.h │ │ ├── pins_BAM_DICE_DUE.h │ │ ├── pins_BIQU_KFB_2.h │ │ ├── pins_BQ_ZUM_MEGA_3D.h │ │ ├── pins_COPYMASTER_3D.h │ │ ├── pins_DAGOMA_F5.h │ │ ├── pins_DUPLICATOR_I3_PLUS.h │ │ ├── pins_FELIX2.h │ │ ├── pins_FORMBOT_RAPTOR.h │ │ ├── pins_FORMBOT_RAPTOR2.h │ │ ├── pins_FORMBOT_TREX2PLUS.h │ │ ├── pins_FORMBOT_TREX3.h │ │ ├── pins_FYSETC_F6_13.h │ │ ├── pins_FYSETC_F6_14.h │ │ ├── pins_K8200.h │ │ ├── pins_K8400.h │ │ ├── pins_K8600.h │ │ ├── pins_K8800.h │ │ ├── pins_LONGER3D_LKx_PRO.h │ │ ├── pins_MAKEBOARD_MINI.h │ │ ├── pins_MKS_BASE_10.h │ │ ├── pins_MKS_BASE_14.h │ │ ├── pins_MKS_BASE_15.h │ │ ├── pins_MKS_BASE_16.h │ │ ├── pins_MKS_BASE_HEROIC.h │ │ ├── pins_MKS_BASE_common.h │ │ ├── pins_MKS_GEN_13.h │ │ ├── pins_MKS_GEN_L.h │ │ ├── pins_MKS_GEN_L_V2.h │ │ ├── pins_MKS_GEN_L_V21.h │ │ ├── pins_ORTUR_4.h │ │ ├── pins_PXMALION_CORE_I3.h │ │ ├── pins_RAMPS.h │ │ ├── pins_RAMPS_13.h │ │ ├── pins_RAMPS_CREALITY.h │ │ ├── pins_RAMPS_ENDER_4.h │ │ ├── pins_RAMPS_OLD.h │ │ ├── pins_RAMPS_PLUS.h │ │ ├── pins_RAMPS_S_12.h │ │ ├── pins_RIGIDBOARD.h │ │ ├── pins_RIGIDBOARD_V2.h │ │ ├── pins_RL200.h │ │ ├── pins_RUMBA.h │ │ ├── pins_RUMBA_RAISE3D.h │ │ ├── pins_SAINSMART_2IN1.h │ │ ├── pins_TANGO.h │ │ ├── pins_TENLOG_D3_HERO.h │ │ ├── pins_TENLOG_MB1_V23.h │ │ ├── pins_TRIGORILLA_13.h │ │ ├── pins_TRIGORILLA_14.h │ │ ├── pins_TRONXY_V3_1_0.h │ │ ├── pins_TT_OSCAR.h │ │ ├── pins_ULTIMAIN_2.h │ │ ├── pins_ULTIMAKER.h │ │ ├── pins_ULTIMAKER_OLD.h │ │ ├── pins_VORON.h │ │ ├── pins_ZRIB_V20.h │ │ ├── pins_ZRIB_V52.h │ │ ├── pins_ZRIB_V53.h │ │ └── pins_Z_BOLT_X_SERIES.h │ ├── sam │ │ ├── env_validate.h │ │ ├── pins_ADSK.h │ │ ├── pins_ALLIGATOR_R2.h │ │ ├── pins_ARCHIM1.h │ │ ├── pins_ARCHIM2.h │ │ ├── pins_CNCONTROLS_15D.h │ │ ├── pins_DUE3DOM.h │ │ ├── pins_DUE3DOM_MINI.h │ │ ├── pins_KRATOS32.h │ │ ├── pins_PRINTRBOARD_G2.h │ │ ├── pins_RADDS.h │ │ ├── pins_RAMPS4DUE.h │ │ ├── pins_RAMPS_DUO.h │ │ ├── pins_RAMPS_FD_V1.h │ │ ├── pins_RAMPS_FD_V2.h │ │ ├── pins_RAMPS_SMART.h │ │ ├── pins_RURAMPS4D_11.h │ │ ├── pins_RURAMPS4D_13.h │ │ └── pins_ULTRATRONICS_PRO.h │ ├── samd │ │ ├── pins_BRICOLEMON_LITE_V1_0.h │ │ ├── pins_BRICOLEMON_V1_0.h │ │ ├── pins_MINITRONICS20.h │ │ └── pins_RAMPS_144.h │ ├── sanguino │ │ ├── env_validate.h │ │ ├── pins_ANET_10.h │ │ ├── pins_AZTEEG_X1.h │ │ ├── pins_GEN3_MONOLITHIC.h │ │ ├── pins_GEN3_PLUS.h │ │ ├── pins_GEN6.h │ │ ├── pins_GEN6_DELUXE.h │ │ ├── pins_GEN7_12.h │ │ ├── pins_GEN7_13.h │ │ ├── pins_GEN7_14.h │ │ ├── pins_GEN7_CUSTOM.h │ │ ├── pins_MELZI.h │ │ ├── pins_MELZI_CREALITY.h │ │ ├── pins_MELZI_MAKR3D.h │ │ ├── pins_MELZI_MALYAN.h │ │ ├── pins_MELZI_TRONXY.h │ │ ├── pins_MELZI_V2.h │ │ ├── pins_OMCA.h │ │ ├── pins_OMCA_A.h │ │ ├── pins_SANGUINOLOLU_11.h │ │ ├── pins_SANGUINOLOLU_12.h │ │ ├── pins_SETHI.h │ │ ├── pins_STB_11.h │ │ └── pins_ZMIB_V2.h │ ├── sensitive_pins.h │ ├── stm32f0 │ │ ├── pins_MALYAN_M200_V2.h │ │ └── pins_MALYAN_M300.h │ ├── stm32f1 │ │ ├── env_validate.h │ │ ├── pins_BEAST.h │ │ ├── pins_BTT_SKR_CR6.h │ │ ├── pins_BTT_SKR_E3_DIP.h │ │ ├── pins_BTT_SKR_MINI_E3_V1_0.h │ │ ├── pins_BTT_SKR_MINI_E3_V1_2.h │ │ ├── pins_BTT_SKR_MINI_E3_V2_0.h │ │ ├── pins_BTT_SKR_MINI_E3_common.h │ │ ├── pins_BTT_SKR_MINI_MZ_V1_0.h │ │ ├── pins_BTT_SKR_MINI_V1_1.h │ │ ├── pins_CCROBOT_MEEB_3DP.h │ │ ├── pins_CHITU3D.h │ │ ├── pins_CHITU3D_V5.h │ │ ├── pins_CHITU3D_V6.h │ │ ├── pins_CHITU3D_V9.h │ │ ├── pins_CHITU3D_common.h │ │ ├── pins_CREALITY_V24S1.h │ │ ├── pins_CREALITY_V24S1_301.h │ │ ├── pins_CREALITY_V25S1.h │ │ ├── pins_CREALITY_V4.h │ │ ├── pins_CREALITY_V4210.h │ │ ├── pins_CREALITY_V422.h │ │ ├── pins_CREALITY_V423.h │ │ ├── pins_CREALITY_V425.h │ │ ├── pins_CREALITY_V427.h │ │ ├── pins_CREALITY_V431.h │ │ ├── pins_CREALITY_V452.h │ │ ├── pins_CREALITY_V453.h │ │ ├── pins_CREALITY_V45x.h │ │ ├── pins_CREALITY_V521.h │ │ ├── pins_ERYONE_ERY32_MINI.h │ │ ├── pins_FLSUN_HISPEED.h │ │ ├── pins_FLY_MINI.h │ │ ├── pins_FYSETC_AIO_II.h │ │ ├── pins_FYSETC_CHEETAH.h │ │ ├── pins_FYSETC_CHEETAH_V12.h │ │ ├── pins_GTM32_MINI.h │ │ ├── pins_GTM32_MINI_A30.h │ │ ├── pins_GTM32_PRO_VB.h │ │ ├── pins_GTM32_PRO_VD.h │ │ ├── pins_GTM32_REV_B.h │ │ ├── pins_JGAURORA_A5S_A1.h │ │ ├── pins_LONGER3D_LK.h │ │ ├── pins_MALYAN_M200.h │ │ ├── pins_MINGDA_MPX_ARM_MINI.h │ │ ├── pins_MKS_ROBIN.h │ │ ├── pins_MKS_ROBIN_E3.h │ │ ├── pins_MKS_ROBIN_E3D.h │ │ ├── pins_MKS_ROBIN_E3D_V1_1.h │ │ ├── pins_MKS_ROBIN_E3P.h │ │ ├── pins_MKS_ROBIN_E3_V1_1.h │ │ ├── pins_MKS_ROBIN_E3_V1_1_common.h │ │ ├── pins_MKS_ROBIN_E3_common.h │ │ ├── pins_MKS_ROBIN_LITE.h │ │ ├── pins_MKS_ROBIN_LITE3.h │ │ ├── pins_MKS_ROBIN_MINI.h │ │ ├── pins_MKS_ROBIN_NANO.h │ │ ├── pins_MKS_ROBIN_NANO_V2.h │ │ ├── pins_MKS_ROBIN_NANO_common.h │ │ ├── pins_MKS_ROBIN_PRO.h │ │ ├── pins_MORPHEUS.h │ │ ├── pins_ORCA_3D_SPRINGER.h │ │ ├── pins_PANDA_PI_V29.h │ │ ├── pins_STM32F1R.h │ │ ├── pins_STM3R_MINI.h │ │ ├── pins_TRIGORILLA_PRO.h │ │ ├── pins_ZM3E2_V1_0.h │ │ ├── pins_ZM3E4_V1_0.h │ │ └── pins_ZM3E4_V2_0.h │ ├── stm32f4 │ │ ├── env_validate.h │ │ ├── pins_ANET_ET4.h │ │ ├── pins_ANET_ET4P.h │ │ ├── pins_ARMED.h │ │ ├── pins_ARTILLERY_RUBY.h │ │ ├── pins_BLACK_STM32F407VE.h │ │ ├── pins_BTT_BTT002_V1_0.h │ │ ├── pins_BTT_E3_RRF.h │ │ ├── pins_BTT_GTR_V1_0.h │ │ ├── pins_BTT_OCTOPUS_PRO_V1_0.h │ │ ├── pins_BTT_OCTOPUS_V1_0.h │ │ ├── pins_BTT_OCTOPUS_V1_1.h │ │ ├── pins_BTT_OCTOPUS_V1_common.h │ │ ├── pins_BTT_SKR_MINI_E3_V3_0_1.h │ │ ├── pins_BTT_SKR_PRO_V1_1.h │ │ ├── pins_BTT_SKR_PRO_V1_2.h │ │ ├── pins_BTT_SKR_PRO_common.h │ │ ├── pins_BTT_SKR_V2_0_REV_A.h │ │ ├── pins_BTT_SKR_V2_0_REV_B.h │ │ ├── pins_BTT_SKR_V2_0_common.h │ │ ├── pins_CREALITY_V24S1_301F4.h │ │ ├── pins_FLYF407ZG.h │ │ ├── pins_FYSETC_CHEETAH_V20.h │ │ ├── pins_FYSETC_S6.h │ │ ├── pins_FYSETC_S6_V2_0.h │ │ ├── pins_FYSETC_SPIDER.h │ │ ├── pins_FYSETC_SPIDER_V2_2.h │ │ ├── pins_LERDGE_K.h │ │ ├── pins_LERDGE_S.h │ │ ├── pins_LERDGE_X.h │ │ ├── pins_MKS_E3_V2.h │ │ ├── pins_MKS_EAGLE.h │ │ ├── pins_MKS_MONSTER8_V1.h │ │ ├── pins_MKS_MONSTER8_V2.h │ │ ├── pins_MKS_MONSTER8_common.h │ │ ├── pins_MKS_ROBIN2.h │ │ ├── pins_MKS_ROBIN_NANO_V1_3_F4.h │ │ ├── pins_MKS_ROBIN_NANO_V3.h │ │ ├── pins_MKS_ROBIN_NANO_V3_common.h │ │ ├── pins_MKS_ROBIN_PRO_V2.h │ │ ├── pins_MKS_SKIPR_V1_0.h │ │ ├── pins_OPULO_LUMEN_REV3.h │ │ ├── pins_OPULO_LUMEN_REV4.h │ │ ├── pins_RUMBA32_AUS3D.h │ │ ├── pins_RUMBA32_BTT.h │ │ ├── pins_RUMBA32_MKS.h │ │ ├── pins_RUMBA32_common.h │ │ ├── pins_TH3D_EZBOARD_V2.h │ │ └── pins_TRONXY_V10.h │ ├── stm32f7 │ │ ├── pins_NUCLEO_F767ZI.h │ │ └── pins_REMRAM_V1.h │ ├── stm32g0 │ │ ├── env_validate.h │ │ ├── pins_BTT_EBB42_V1_1.h │ │ ├── pins_BTT_MANTA_E3_EZ_V1_0.h │ │ ├── pins_BTT_MANTA_M4P_V2_1.h │ │ ├── pins_BTT_MANTA_M5P_V1_0.h │ │ ├── pins_BTT_MANTA_M8P_V1_0.h │ │ ├── pins_BTT_MANTA_M8P_V1_1.h │ │ ├── pins_BTT_MANTA_M8P_common.h │ │ └── pins_BTT_SKR_MINI_E3_V3_0.h │ ├── stm32h7 │ │ ├── env_validate.h │ │ ├── pins_BTT_OCTOPUS_MAX_EZ.h │ │ ├── pins_BTT_SKR_SE_BX_V2.h │ │ ├── pins_BTT_SKR_SE_BX_V3.h │ │ ├── pins_BTT_SKR_SE_BX_common.h │ │ ├── pins_BTT_SKR_V3_0.h │ │ ├── pins_BTT_SKR_V3_0_EZ.h │ │ └── pins_BTT_SKR_V3_0_common.h │ ├── teensy2 │ │ ├── env_validate.h │ │ ├── pins_5DPRINT.h │ │ ├── pins_BRAINWAVE.h │ │ ├── pins_BRAINWAVE_PRO.h │ │ ├── pins_PRINTRBOARD.h │ │ ├── pins_PRINTRBOARD_REVF.h │ │ ├── pins_SAV_MKI.h │ │ ├── pins_TEENSY2.h │ │ └── pins_TEENSYLU.h │ ├── teensy3 │ │ ├── pins_TEENSY31_32.h │ │ └── pins_TEENSY35_36.h │ └── teensy4 │ │ ├── env_validate.h │ │ ├── pins_T41U5XBB.h │ │ └── pins_TEENSY41.h │ ├── sd │ ├── Sd2Card.cpp │ ├── Sd2Card.h │ ├── Sd2Card_sdio.h │ ├── SdBaseFile.cpp │ ├── SdBaseFile.h │ ├── SdFatConfig.h │ ├── SdFatStructs.h │ ├── SdFatUtil.cpp │ ├── SdFatUtil.h │ ├── SdFile.cpp │ ├── SdFile.h │ ├── SdInfo.h │ ├── SdVolume.cpp │ ├── SdVolume.h │ ├── cardreader.cpp │ ├── cardreader.h │ ├── disk_io_driver.h │ ├── storage.h │ └── usb_flashdrive │ │ ├── Sd2Card_FlashDrive.cpp │ │ ├── Sd2Card_FlashDrive.h │ │ ├── lib-uhs2 │ │ ├── README.txt │ │ ├── Usb.cpp │ │ ├── Usb.h │ │ ├── UsbCore.h │ │ ├── address.h │ │ ├── confdescparser.h │ │ ├── hexdump.h │ │ ├── macros.h │ │ ├── masstorage.cpp │ │ ├── masstorage.h │ │ ├── max3421e.h │ │ ├── message.cpp │ │ ├── message.h │ │ ├── parsetools.cpp │ │ ├── parsetools.h │ │ ├── printhex.h │ │ ├── settings.h │ │ ├── usb_ch9.h │ │ ├── usbhost.cpp │ │ └── usbhost.h │ │ └── lib-uhs3 │ │ ├── README.txt │ │ ├── UHS_host │ │ ├── UHS_BULK_STORAGE │ │ │ ├── UHS_BULK_STORAGE.h │ │ │ ├── UHS_BULK_STORAGE_INLINE.h │ │ │ └── UHS_SCSI.h │ │ ├── UHS_UNOFFICIAL_IDs.h │ │ ├── UHS_USB_IDs.h │ │ ├── UHS_UsbCore.h │ │ ├── UHS_address.h │ │ ├── UHS_hexdump.h │ │ ├── UHS_host.h │ │ ├── UHS_host_INLINE.h │ │ ├── UHS_macros.h │ │ ├── UHS_message.h │ │ ├── UHS_printf_HELPER.h │ │ ├── UHS_printhex.h │ │ ├── UHS_settings.h │ │ ├── UHS_usb_ch9.h │ │ ├── UHS_usbhost.h │ │ ├── UHS_util_INLINE.h │ │ ├── USB_HOST_SHIELD │ │ │ ├── UHS_max3421e.h │ │ │ ├── USB_HOST_SHIELD.h │ │ │ └── USB_HOST_SHIELD_INLINE.h │ │ └── macro_logic.h │ │ └── dyn_SWI │ │ ├── SWI_INLINE.h │ │ └── dyn_SWI.h │ └── tests │ ├── marlin_tests.cpp │ └── marlin_tests.h ├── README.md ├── config └── README.md ├── docker └── Dockerfile ├── docs ├── BinaryFileTransferProtocol.md ├── Bresenham.md ├── ConfigEmbedding.md ├── Cutter.md ├── Queue.md └── Serial.md ├── ini ├── avr.ini ├── due.ini ├── esp32.ini ├── features.ini ├── lpc176x.ini ├── native.ini ├── renamed.ini ├── samd21.ini ├── samd51.ini ├── stm32-common.ini ├── stm32f0.ini ├── stm32f1-maple.ini ├── stm32f1.ini ├── stm32f4.ini ├── stm32f7.ini ├── stm32g0.ini ├── stm32h7.ini └── teensy.ini ├── platformio.ini └── process-palette.json /.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/code_of_conduct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/.github/code_of_conduct.md -------------------------------------------------------------------------------- /.github/contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/.github/contributing.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Makefile -------------------------------------------------------------------------------- /Marlin/Configuration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/Configuration.h -------------------------------------------------------------------------------- /Marlin/Configuration_adv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/Configuration_adv.h -------------------------------------------------------------------------------- /Marlin/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/Makefile -------------------------------------------------------------------------------- /Marlin/Marlin.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/Marlin.ino -------------------------------------------------------------------------------- /Marlin/Version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/Version.h -------------------------------------------------------------------------------- /Marlin/config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/config.ini -------------------------------------------------------------------------------- /Marlin/lib/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/lib/readme.txt -------------------------------------------------------------------------------- /Marlin/src/HAL/AVR/HAL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/AVR/HAL.cpp -------------------------------------------------------------------------------- /Marlin/src/HAL/AVR/HAL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/AVR/HAL.h -------------------------------------------------------------------------------- /Marlin/src/HAL/AVR/HAL_SPI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/AVR/HAL_SPI.cpp -------------------------------------------------------------------------------- /Marlin/src/HAL/AVR/MarlinSPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/AVR/MarlinSPI.h -------------------------------------------------------------------------------- /Marlin/src/HAL/AVR/MarlinSerial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/AVR/MarlinSerial.cpp -------------------------------------------------------------------------------- /Marlin/src/HAL/AVR/MarlinSerial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/AVR/MarlinSerial.h -------------------------------------------------------------------------------- /Marlin/src/HAL/AVR/Servo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/AVR/Servo.cpp -------------------------------------------------------------------------------- /Marlin/src/HAL/AVR/ServoTimers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/AVR/ServoTimers.h -------------------------------------------------------------------------------- /Marlin/src/HAL/AVR/eeprom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/AVR/eeprom.cpp -------------------------------------------------------------------------------- /Marlin/src/HAL/AVR/fast_pwm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/AVR/fast_pwm.cpp -------------------------------------------------------------------------------- /Marlin/src/HAL/AVR/fastio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/AVR/fastio.cpp -------------------------------------------------------------------------------- /Marlin/src/HAL/AVR/fastio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/AVR/fastio.h -------------------------------------------------------------------------------- /Marlin/src/HAL/AVR/fastio/fastio_168.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/AVR/fastio/fastio_168.h -------------------------------------------------------------------------------- /Marlin/src/HAL/AVR/fastio/fastio_644.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/AVR/fastio/fastio_644.h -------------------------------------------------------------------------------- /Marlin/src/HAL/AVR/inc/SanityCheck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/AVR/inc/SanityCheck.h -------------------------------------------------------------------------------- /Marlin/src/HAL/AVR/math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/AVR/math.h -------------------------------------------------------------------------------- /Marlin/src/HAL/AVR/pinsDebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/AVR/pinsDebug.h -------------------------------------------------------------------------------- /Marlin/src/HAL/AVR/pinsDebug_plus_70.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/AVR/pinsDebug_plus_70.h -------------------------------------------------------------------------------- /Marlin/src/HAL/AVR/spi_pins.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/AVR/spi_pins.h -------------------------------------------------------------------------------- /Marlin/src/HAL/AVR/timers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/AVR/timers.h -------------------------------------------------------------------------------- /Marlin/src/HAL/DUE/HAL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/DUE/HAL.cpp -------------------------------------------------------------------------------- /Marlin/src/HAL/DUE/HAL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/DUE/HAL.h -------------------------------------------------------------------------------- /Marlin/src/HAL/DUE/HAL_SPI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/DUE/HAL_SPI.cpp -------------------------------------------------------------------------------- /Marlin/src/HAL/DUE/InterruptVectors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/DUE/InterruptVectors.h -------------------------------------------------------------------------------- /Marlin/src/HAL/DUE/MarlinSPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/DUE/MarlinSPI.h -------------------------------------------------------------------------------- /Marlin/src/HAL/DUE/MarlinSerial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/DUE/MarlinSerial.cpp -------------------------------------------------------------------------------- /Marlin/src/HAL/DUE/MarlinSerial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/DUE/MarlinSerial.h -------------------------------------------------------------------------------- /Marlin/src/HAL/DUE/MarlinSerialUSB.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/DUE/MarlinSerialUSB.cpp -------------------------------------------------------------------------------- /Marlin/src/HAL/DUE/MarlinSerialUSB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/DUE/MarlinSerialUSB.h -------------------------------------------------------------------------------- /Marlin/src/HAL/DUE/MinSerial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/DUE/MinSerial.cpp -------------------------------------------------------------------------------- /Marlin/src/HAL/DUE/Servo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/DUE/Servo.cpp -------------------------------------------------------------------------------- /Marlin/src/HAL/DUE/ServoTimers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/DUE/ServoTimers.h -------------------------------------------------------------------------------- /Marlin/src/HAL/DUE/Tone.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/DUE/Tone.cpp -------------------------------------------------------------------------------- /Marlin/src/HAL/DUE/eeprom_flash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/DUE/eeprom_flash.cpp -------------------------------------------------------------------------------- /Marlin/src/HAL/DUE/eeprom_wired.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/DUE/eeprom_wired.cpp -------------------------------------------------------------------------------- /Marlin/src/HAL/DUE/fastio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/DUE/fastio.h -------------------------------------------------------------------------------- /Marlin/src/HAL/DUE/fastio/G2_PWM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/DUE/fastio/G2_PWM.cpp -------------------------------------------------------------------------------- /Marlin/src/HAL/DUE/fastio/G2_PWM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/DUE/fastio/G2_PWM.h -------------------------------------------------------------------------------- /Marlin/src/HAL/DUE/fastio/G2_pins.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/DUE/fastio/G2_pins.h -------------------------------------------------------------------------------- /Marlin/src/HAL/DUE/inc/SanityCheck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/DUE/inc/SanityCheck.h -------------------------------------------------------------------------------- /Marlin/src/HAL/DUE/pinsDebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/DUE/pinsDebug.h -------------------------------------------------------------------------------- /Marlin/src/HAL/DUE/spi_pins.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/DUE/spi_pins.h -------------------------------------------------------------------------------- /Marlin/src/HAL/DUE/timers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/DUE/timers.cpp -------------------------------------------------------------------------------- /Marlin/src/HAL/DUE/timers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/DUE/timers.h -------------------------------------------------------------------------------- /Marlin/src/HAL/DUE/usb/arduino_due_x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/DUE/usb/arduino_due_x.h -------------------------------------------------------------------------------- /Marlin/src/HAL/DUE/usb/compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/DUE/usb/compiler.h -------------------------------------------------------------------------------- /Marlin/src/HAL/DUE/usb/conf_access.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/DUE/usb/conf_access.h -------------------------------------------------------------------------------- /Marlin/src/HAL/DUE/usb/conf_clock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/DUE/usb/conf_clock.h -------------------------------------------------------------------------------- /Marlin/src/HAL/DUE/usb/conf_usb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/DUE/usb/conf_usb.h -------------------------------------------------------------------------------- /Marlin/src/HAL/DUE/usb/ctrl_access.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/DUE/usb/ctrl_access.c -------------------------------------------------------------------------------- /Marlin/src/HAL/DUE/usb/ctrl_access.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/DUE/usb/ctrl_access.h -------------------------------------------------------------------------------- /Marlin/src/HAL/DUE/usb/genclk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/DUE/usb/genclk.h -------------------------------------------------------------------------------- /Marlin/src/HAL/DUE/usb/mrepeat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/DUE/usb/mrepeat.h -------------------------------------------------------------------------------- /Marlin/src/HAL/DUE/usb/osc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/DUE/usb/osc.h -------------------------------------------------------------------------------- /Marlin/src/HAL/DUE/usb/pll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/DUE/usb/pll.h -------------------------------------------------------------------------------- /Marlin/src/HAL/DUE/usb/preprocessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/DUE/usb/preprocessor.h -------------------------------------------------------------------------------- /Marlin/src/HAL/DUE/usb/sbc_protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/DUE/usb/sbc_protocol.h -------------------------------------------------------------------------------- /Marlin/src/HAL/DUE/usb/spc_protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/DUE/usb/spc_protocol.h -------------------------------------------------------------------------------- /Marlin/src/HAL/DUE/usb/stringz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/DUE/usb/stringz.h -------------------------------------------------------------------------------- /Marlin/src/HAL/DUE/usb/sysclk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/DUE/usb/sysclk.c -------------------------------------------------------------------------------- /Marlin/src/HAL/DUE/usb/sysclk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/DUE/usb/sysclk.h -------------------------------------------------------------------------------- /Marlin/src/HAL/DUE/usb/tpaste.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/DUE/usb/tpaste.h -------------------------------------------------------------------------------- /Marlin/src/HAL/DUE/usb/udc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/DUE/usb/udc.c -------------------------------------------------------------------------------- /Marlin/src/HAL/DUE/usb/udc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/DUE/usb/udc.h -------------------------------------------------------------------------------- /Marlin/src/HAL/DUE/usb/udc_desc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/DUE/usb/udc_desc.h -------------------------------------------------------------------------------- /Marlin/src/HAL/DUE/usb/udd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/DUE/usb/udd.h -------------------------------------------------------------------------------- /Marlin/src/HAL/DUE/usb/udi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/DUE/usb/udi.h -------------------------------------------------------------------------------- /Marlin/src/HAL/DUE/usb/udi_cdc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/DUE/usb/udi_cdc.c -------------------------------------------------------------------------------- /Marlin/src/HAL/DUE/usb/udi_cdc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/DUE/usb/udi_cdc.h -------------------------------------------------------------------------------- /Marlin/src/HAL/DUE/usb/udi_cdc_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/DUE/usb/udi_cdc_conf.h -------------------------------------------------------------------------------- /Marlin/src/HAL/DUE/usb/udi_cdc_desc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/DUE/usb/udi_cdc_desc.c -------------------------------------------------------------------------------- /Marlin/src/HAL/DUE/usb/udi_msc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/DUE/usb/udi_msc.c -------------------------------------------------------------------------------- /Marlin/src/HAL/DUE/usb/udi_msc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/DUE/usb/udi_msc.h -------------------------------------------------------------------------------- /Marlin/src/HAL/DUE/usb/uotghs_otg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/DUE/usb/uotghs_otg.h -------------------------------------------------------------------------------- /Marlin/src/HAL/DUE/usb/usb_protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/DUE/usb/usb_protocol.h -------------------------------------------------------------------------------- /Marlin/src/HAL/DUE/usb/usb_task.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/DUE/usb/usb_task.c -------------------------------------------------------------------------------- /Marlin/src/HAL/DUE/usb/usb_task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/DUE/usb/usb_task.h -------------------------------------------------------------------------------- /Marlin/src/HAL/ESP32/HAL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/ESP32/HAL.cpp -------------------------------------------------------------------------------- /Marlin/src/HAL/ESP32/HAL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/ESP32/HAL.h -------------------------------------------------------------------------------- /Marlin/src/HAL/ESP32/HAL_SPI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/ESP32/HAL_SPI.cpp -------------------------------------------------------------------------------- /Marlin/src/HAL/ESP32/MarlinSPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/ESP32/MarlinSPI.h -------------------------------------------------------------------------------- /Marlin/src/HAL/ESP32/Servo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/ESP32/Servo.cpp -------------------------------------------------------------------------------- /Marlin/src/HAL/ESP32/Servo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/ESP32/Servo.h -------------------------------------------------------------------------------- /Marlin/src/HAL/ESP32/Tone.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/ESP32/Tone.cpp -------------------------------------------------------------------------------- /Marlin/src/HAL/ESP32/WebSocketSerial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/ESP32/WebSocketSerial.h -------------------------------------------------------------------------------- /Marlin/src/HAL/ESP32/eeprom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/ESP32/eeprom.cpp -------------------------------------------------------------------------------- /Marlin/src/HAL/ESP32/esp32.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/ESP32/esp32.csv -------------------------------------------------------------------------------- /Marlin/src/HAL/ESP32/fastio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/ESP32/fastio.h -------------------------------------------------------------------------------- /Marlin/src/HAL/ESP32/i2s.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/ESP32/i2s.cpp -------------------------------------------------------------------------------- /Marlin/src/HAL/ESP32/i2s.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/ESP32/i2s.h -------------------------------------------------------------------------------- /Marlin/src/HAL/ESP32/inc/SanityCheck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/ESP32/inc/SanityCheck.h -------------------------------------------------------------------------------- /Marlin/src/HAL/ESP32/ota.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/ESP32/ota.cpp -------------------------------------------------------------------------------- /Marlin/src/HAL/ESP32/ota.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/ESP32/ota.h -------------------------------------------------------------------------------- /Marlin/src/HAL/ESP32/servotimers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/ESP32/servotimers.h -------------------------------------------------------------------------------- /Marlin/src/HAL/ESP32/spi_pins.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/ESP32/spi_pins.h -------------------------------------------------------------------------------- /Marlin/src/HAL/ESP32/spiffs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/ESP32/spiffs.cpp -------------------------------------------------------------------------------- /Marlin/src/HAL/ESP32/spiffs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/ESP32/spiffs.h -------------------------------------------------------------------------------- /Marlin/src/HAL/ESP32/timers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/ESP32/timers.cpp -------------------------------------------------------------------------------- /Marlin/src/HAL/ESP32/timers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/ESP32/timers.h -------------------------------------------------------------------------------- /Marlin/src/HAL/ESP32/u8g_esp32_spi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/ESP32/u8g_esp32_spi.cpp -------------------------------------------------------------------------------- /Marlin/src/HAL/ESP32/web.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/ESP32/web.cpp -------------------------------------------------------------------------------- /Marlin/src/HAL/ESP32/web.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/ESP32/web.h -------------------------------------------------------------------------------- /Marlin/src/HAL/ESP32/wifi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/ESP32/wifi.cpp -------------------------------------------------------------------------------- /Marlin/src/HAL/ESP32/wifi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/ESP32/wifi.h -------------------------------------------------------------------------------- /Marlin/src/HAL/HAL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/HAL.h -------------------------------------------------------------------------------- /Marlin/src/HAL/LINUX/HAL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/LINUX/HAL.cpp -------------------------------------------------------------------------------- /Marlin/src/HAL/LINUX/HAL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/LINUX/HAL.h -------------------------------------------------------------------------------- /Marlin/src/HAL/LINUX/MarlinSPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/LINUX/MarlinSPI.h -------------------------------------------------------------------------------- /Marlin/src/HAL/LINUX/arduino.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/LINUX/arduino.cpp -------------------------------------------------------------------------------- /Marlin/src/HAL/LINUX/eeprom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/LINUX/eeprom.cpp -------------------------------------------------------------------------------- /Marlin/src/HAL/LINUX/fastio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/LINUX/fastio.h -------------------------------------------------------------------------------- /Marlin/src/HAL/LINUX/hardware/Clock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/LINUX/hardware/Clock.h -------------------------------------------------------------------------------- /Marlin/src/HAL/LINUX/hardware/Gpio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/LINUX/hardware/Gpio.cpp -------------------------------------------------------------------------------- /Marlin/src/HAL/LINUX/hardware/Gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/LINUX/hardware/Gpio.h -------------------------------------------------------------------------------- /Marlin/src/HAL/LINUX/hardware/Heater.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/LINUX/hardware/Heater.h -------------------------------------------------------------------------------- /Marlin/src/HAL/LINUX/hardware/Timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/LINUX/hardware/Timer.h -------------------------------------------------------------------------------- /Marlin/src/HAL/LINUX/inc/SanityCheck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/LINUX/inc/SanityCheck.h -------------------------------------------------------------------------------- /Marlin/src/HAL/LINUX/include/Arduino.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/LINUX/include/Arduino.h -------------------------------------------------------------------------------- /Marlin/src/HAL/LINUX/include/serial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/LINUX/include/serial.h -------------------------------------------------------------------------------- /Marlin/src/HAL/LINUX/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/LINUX/main.cpp -------------------------------------------------------------------------------- /Marlin/src/HAL/LINUX/pinsDebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/LINUX/pinsDebug.h -------------------------------------------------------------------------------- /Marlin/src/HAL/LINUX/servo_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/LINUX/servo_private.h -------------------------------------------------------------------------------- /Marlin/src/HAL/LINUX/spi_pins.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/LINUX/spi_pins.h -------------------------------------------------------------------------------- /Marlin/src/HAL/LINUX/timers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/LINUX/timers.cpp -------------------------------------------------------------------------------- /Marlin/src/HAL/LINUX/timers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/LINUX/timers.h -------------------------------------------------------------------------------- /Marlin/src/HAL/LPC1768/HAL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/LPC1768/HAL.cpp -------------------------------------------------------------------------------- /Marlin/src/HAL/LPC1768/HAL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/LPC1768/HAL.h -------------------------------------------------------------------------------- /Marlin/src/HAL/LPC1768/HAL_SPI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/LPC1768/HAL_SPI.cpp -------------------------------------------------------------------------------- /Marlin/src/HAL/LPC1768/MarlinSPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/LPC1768/MarlinSPI.h -------------------------------------------------------------------------------- /Marlin/src/HAL/LPC1768/MarlinSerial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/LPC1768/MarlinSerial.h -------------------------------------------------------------------------------- /Marlin/src/HAL/LPC1768/MinSerial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/LPC1768/MinSerial.cpp -------------------------------------------------------------------------------- /Marlin/src/HAL/LPC1768/Servo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/LPC1768/Servo.h -------------------------------------------------------------------------------- /Marlin/src/HAL/LPC1768/fast_pwm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/LPC1768/fast_pwm.cpp -------------------------------------------------------------------------------- /Marlin/src/HAL/LPC1768/fastio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/LPC1768/fastio.h -------------------------------------------------------------------------------- /Marlin/src/HAL/LPC1768/include/SPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/LPC1768/include/SPI.h -------------------------------------------------------------------------------- /Marlin/src/HAL/LPC1768/pinsDebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/LPC1768/pinsDebug.h -------------------------------------------------------------------------------- /Marlin/src/HAL/LPC1768/spi_pins.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/LPC1768/spi_pins.h -------------------------------------------------------------------------------- /Marlin/src/HAL/LPC1768/tft/tft_spi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/LPC1768/tft/tft_spi.cpp -------------------------------------------------------------------------------- /Marlin/src/HAL/LPC1768/tft/tft_spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/LPC1768/tft/tft_spi.h -------------------------------------------------------------------------------- /Marlin/src/HAL/LPC1768/tft/xpt2046.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/LPC1768/tft/xpt2046.cpp -------------------------------------------------------------------------------- /Marlin/src/HAL/LPC1768/tft/xpt2046.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/LPC1768/tft/xpt2046.h -------------------------------------------------------------------------------- /Marlin/src/HAL/LPC1768/timers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/LPC1768/timers.cpp -------------------------------------------------------------------------------- /Marlin/src/HAL/LPC1768/timers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/LPC1768/timers.h -------------------------------------------------------------------------------- /Marlin/src/HAL/LPC1768/u8g/LCD_delay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/LPC1768/u8g/LCD_delay.h -------------------------------------------------------------------------------- /Marlin/src/HAL/LPC1768/usb_serial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/LPC1768/usb_serial.cpp -------------------------------------------------------------------------------- /Marlin/src/HAL/NATIVE_SIM/HAL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/NATIVE_SIM/HAL.h -------------------------------------------------------------------------------- /Marlin/src/HAL/NATIVE_SIM/MarlinSPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/NATIVE_SIM/MarlinSPI.h -------------------------------------------------------------------------------- /Marlin/src/HAL/NATIVE_SIM/fastio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/NATIVE_SIM/fastio.h -------------------------------------------------------------------------------- /Marlin/src/HAL/NATIVE_SIM/pinsDebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/NATIVE_SIM/pinsDebug.h -------------------------------------------------------------------------------- /Marlin/src/HAL/NATIVE_SIM/spi_pins.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/NATIVE_SIM/spi_pins.h -------------------------------------------------------------------------------- /Marlin/src/HAL/NATIVE_SIM/timers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/NATIVE_SIM/timers.h -------------------------------------------------------------------------------- /Marlin/src/HAL/SAMD21/HAL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/SAMD21/HAL.cpp -------------------------------------------------------------------------------- /Marlin/src/HAL/SAMD21/HAL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/SAMD21/HAL.h -------------------------------------------------------------------------------- /Marlin/src/HAL/SAMD21/HAL_SPI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/SAMD21/HAL_SPI.cpp -------------------------------------------------------------------------------- /Marlin/src/HAL/SAMD21/MarlinSPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/SAMD21/MarlinSPI.h -------------------------------------------------------------------------------- /Marlin/src/HAL/SAMD21/QSPIFlash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/SAMD21/QSPIFlash.cpp -------------------------------------------------------------------------------- /Marlin/src/HAL/SAMD21/QSPIFlash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/SAMD21/QSPIFlash.h -------------------------------------------------------------------------------- /Marlin/src/HAL/SAMD21/SAMD21.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/SAMD21/SAMD21.h -------------------------------------------------------------------------------- /Marlin/src/HAL/SAMD21/Servo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/SAMD21/Servo.cpp -------------------------------------------------------------------------------- /Marlin/src/HAL/SAMD21/ServoTimers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/SAMD21/ServoTimers.h -------------------------------------------------------------------------------- /Marlin/src/HAL/SAMD21/eeprom_flash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/SAMD21/eeprom_flash.cpp -------------------------------------------------------------------------------- /Marlin/src/HAL/SAMD21/eeprom_qspi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/SAMD21/eeprom_qspi.cpp -------------------------------------------------------------------------------- /Marlin/src/HAL/SAMD21/eeprom_wired.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/SAMD21/eeprom_wired.cpp -------------------------------------------------------------------------------- /Marlin/src/HAL/SAMD21/fastio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/SAMD21/fastio.h -------------------------------------------------------------------------------- /Marlin/src/HAL/SAMD21/pinsDebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/SAMD21/pinsDebug.h -------------------------------------------------------------------------------- /Marlin/src/HAL/SAMD21/spi_pins.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/SAMD21/spi_pins.h -------------------------------------------------------------------------------- /Marlin/src/HAL/SAMD21/timers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/SAMD21/timers.cpp -------------------------------------------------------------------------------- /Marlin/src/HAL/SAMD21/timers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/SAMD21/timers.h -------------------------------------------------------------------------------- /Marlin/src/HAL/SAMD51/HAL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/SAMD51/HAL.cpp -------------------------------------------------------------------------------- /Marlin/src/HAL/SAMD51/HAL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/SAMD51/HAL.h -------------------------------------------------------------------------------- /Marlin/src/HAL/SAMD51/HAL_SPI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/SAMD51/HAL_SPI.cpp -------------------------------------------------------------------------------- /Marlin/src/HAL/SAMD51/MarlinSPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/SAMD51/MarlinSPI.h -------------------------------------------------------------------------------- /Marlin/src/HAL/SAMD51/QSPIFlash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/SAMD51/QSPIFlash.cpp -------------------------------------------------------------------------------- /Marlin/src/HAL/SAMD51/QSPIFlash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/SAMD51/QSPIFlash.h -------------------------------------------------------------------------------- /Marlin/src/HAL/SAMD51/SAMD51.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/SAMD51/SAMD51.h -------------------------------------------------------------------------------- /Marlin/src/HAL/SAMD51/Servo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/SAMD51/Servo.cpp -------------------------------------------------------------------------------- /Marlin/src/HAL/SAMD51/ServoTimers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/SAMD51/ServoTimers.h -------------------------------------------------------------------------------- /Marlin/src/HAL/SAMD51/eeprom_flash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/SAMD51/eeprom_flash.cpp -------------------------------------------------------------------------------- /Marlin/src/HAL/SAMD51/eeprom_qspi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/SAMD51/eeprom_qspi.cpp -------------------------------------------------------------------------------- /Marlin/src/HAL/SAMD51/eeprom_wired.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/SAMD51/eeprom_wired.cpp -------------------------------------------------------------------------------- /Marlin/src/HAL/SAMD51/fastio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/SAMD51/fastio.h -------------------------------------------------------------------------------- /Marlin/src/HAL/SAMD51/pinsDebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/SAMD51/pinsDebug.h -------------------------------------------------------------------------------- /Marlin/src/HAL/SAMD51/spi_pins.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/SAMD51/spi_pins.h -------------------------------------------------------------------------------- /Marlin/src/HAL/SAMD51/timers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/SAMD51/timers.cpp -------------------------------------------------------------------------------- /Marlin/src/HAL/SAMD51/timers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/SAMD51/timers.h -------------------------------------------------------------------------------- /Marlin/src/HAL/STM32/HAL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/STM32/HAL.cpp -------------------------------------------------------------------------------- /Marlin/src/HAL/STM32/HAL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/STM32/HAL.h -------------------------------------------------------------------------------- /Marlin/src/HAL/STM32/HAL_SPI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/STM32/HAL_SPI.cpp -------------------------------------------------------------------------------- /Marlin/src/HAL/STM32/MarlinSPI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/STM32/MarlinSPI.cpp -------------------------------------------------------------------------------- /Marlin/src/HAL/STM32/MarlinSPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/STM32/MarlinSPI.h -------------------------------------------------------------------------------- /Marlin/src/HAL/STM32/MarlinSerial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/STM32/MarlinSerial.cpp -------------------------------------------------------------------------------- /Marlin/src/HAL/STM32/MarlinSerial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/STM32/MarlinSerial.h -------------------------------------------------------------------------------- /Marlin/src/HAL/STM32/MinSerial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/STM32/MinSerial.cpp -------------------------------------------------------------------------------- /Marlin/src/HAL/STM32/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/STM32/README.md -------------------------------------------------------------------------------- /Marlin/src/HAL/STM32/Servo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/STM32/Servo.cpp -------------------------------------------------------------------------------- /Marlin/src/HAL/STM32/Servo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/STM32/Servo.h -------------------------------------------------------------------------------- /Marlin/src/HAL/STM32/eeprom_flash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/STM32/eeprom_flash.cpp -------------------------------------------------------------------------------- /Marlin/src/HAL/STM32/eeprom_if_iic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/STM32/eeprom_if_iic.cpp -------------------------------------------------------------------------------- /Marlin/src/HAL/STM32/eeprom_sdcard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/STM32/eeprom_sdcard.cpp -------------------------------------------------------------------------------- /Marlin/src/HAL/STM32/eeprom_sram.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/STM32/eeprom_sram.cpp -------------------------------------------------------------------------------- /Marlin/src/HAL/STM32/eeprom_wired.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/STM32/eeprom_wired.cpp -------------------------------------------------------------------------------- /Marlin/src/HAL/STM32/fast_pwm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/STM32/fast_pwm.cpp -------------------------------------------------------------------------------- /Marlin/src/HAL/STM32/fastio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/STM32/fastio.cpp -------------------------------------------------------------------------------- /Marlin/src/HAL/STM32/fastio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/STM32/fastio.h -------------------------------------------------------------------------------- /Marlin/src/HAL/STM32/inc/SanityCheck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/STM32/inc/SanityCheck.h -------------------------------------------------------------------------------- /Marlin/src/HAL/STM32/msc_sd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/STM32/msc_sd.cpp -------------------------------------------------------------------------------- /Marlin/src/HAL/STM32/msc_sd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/STM32/msc_sd.h -------------------------------------------------------------------------------- /Marlin/src/HAL/STM32/pinsDebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/STM32/pinsDebug.h -------------------------------------------------------------------------------- /Marlin/src/HAL/STM32/pins_Xref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/STM32/pins_Xref.h -------------------------------------------------------------------------------- /Marlin/src/HAL/STM32/sdio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/STM32/sdio.cpp -------------------------------------------------------------------------------- /Marlin/src/HAL/STM32/sdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/STM32/sdio.h -------------------------------------------------------------------------------- /Marlin/src/HAL/STM32/spi_pins.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/STM32/spi_pins.h -------------------------------------------------------------------------------- /Marlin/src/HAL/STM32/tft/gt911.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/STM32/tft/gt911.cpp -------------------------------------------------------------------------------- /Marlin/src/HAL/STM32/tft/gt911.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/STM32/tft/gt911.h -------------------------------------------------------------------------------- /Marlin/src/HAL/STM32/tft/tft_fsmc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/STM32/tft/tft_fsmc.cpp -------------------------------------------------------------------------------- /Marlin/src/HAL/STM32/tft/tft_fsmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/STM32/tft/tft_fsmc.h -------------------------------------------------------------------------------- /Marlin/src/HAL/STM32/tft/tft_ltdc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/STM32/tft/tft_ltdc.cpp -------------------------------------------------------------------------------- /Marlin/src/HAL/STM32/tft/tft_ltdc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/STM32/tft/tft_ltdc.h -------------------------------------------------------------------------------- /Marlin/src/HAL/STM32/tft/tft_spi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/STM32/tft/tft_spi.cpp -------------------------------------------------------------------------------- /Marlin/src/HAL/STM32/tft/tft_spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/STM32/tft/tft_spi.h -------------------------------------------------------------------------------- /Marlin/src/HAL/STM32/tft/xpt2046.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/STM32/tft/xpt2046.cpp -------------------------------------------------------------------------------- /Marlin/src/HAL/STM32/tft/xpt2046.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/STM32/tft/xpt2046.h -------------------------------------------------------------------------------- /Marlin/src/HAL/STM32/timers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/STM32/timers.cpp -------------------------------------------------------------------------------- /Marlin/src/HAL/STM32/timers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/STM32/timers.h -------------------------------------------------------------------------------- /Marlin/src/HAL/STM32/usb_host.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/STM32/usb_host.cpp -------------------------------------------------------------------------------- /Marlin/src/HAL/STM32/usb_host.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/STM32/usb_host.h -------------------------------------------------------------------------------- /Marlin/src/HAL/STM32/usb_serial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/STM32/usb_serial.cpp -------------------------------------------------------------------------------- /Marlin/src/HAL/STM32/usb_serial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/STM32/usb_serial.h -------------------------------------------------------------------------------- /Marlin/src/HAL/STM32F1/HAL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/STM32F1/HAL.cpp -------------------------------------------------------------------------------- /Marlin/src/HAL/STM32F1/HAL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/STM32F1/HAL.h -------------------------------------------------------------------------------- /Marlin/src/HAL/STM32F1/HAL_SPI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/STM32F1/HAL_SPI.cpp -------------------------------------------------------------------------------- /Marlin/src/HAL/STM32F1/MarlinSPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/STM32F1/MarlinSPI.h -------------------------------------------------------------------------------- /Marlin/src/HAL/STM32F1/MarlinSerial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/STM32F1/MarlinSerial.h -------------------------------------------------------------------------------- /Marlin/src/HAL/STM32F1/MinSerial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/STM32F1/MinSerial.cpp -------------------------------------------------------------------------------- /Marlin/src/HAL/STM32F1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/STM32F1/README.md -------------------------------------------------------------------------------- /Marlin/src/HAL/STM32F1/SPI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/STM32F1/SPI.cpp -------------------------------------------------------------------------------- /Marlin/src/HAL/STM32F1/SPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/STM32F1/SPI.h -------------------------------------------------------------------------------- /Marlin/src/HAL/STM32F1/Servo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/STM32F1/Servo.cpp -------------------------------------------------------------------------------- /Marlin/src/HAL/STM32F1/Servo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/STM32F1/Servo.h -------------------------------------------------------------------------------- /Marlin/src/HAL/STM32F1/build_flags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/STM32F1/build_flags.py -------------------------------------------------------------------------------- /Marlin/src/HAL/STM32F1/fast_pwm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/STM32F1/fast_pwm.cpp -------------------------------------------------------------------------------- /Marlin/src/HAL/STM32F1/fastio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/STM32F1/fastio.h -------------------------------------------------------------------------------- /Marlin/src/HAL/STM32F1/msc_sd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/STM32F1/msc_sd.cpp -------------------------------------------------------------------------------- /Marlin/src/HAL/STM32F1/msc_sd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/STM32F1/msc_sd.h -------------------------------------------------------------------------------- /Marlin/src/HAL/STM32F1/onboard_sd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/STM32F1/onboard_sd.cpp -------------------------------------------------------------------------------- /Marlin/src/HAL/STM32F1/onboard_sd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/STM32F1/onboard_sd.h -------------------------------------------------------------------------------- /Marlin/src/HAL/STM32F1/pinsDebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/STM32F1/pinsDebug.h -------------------------------------------------------------------------------- /Marlin/src/HAL/STM32F1/sdio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/STM32F1/sdio.cpp -------------------------------------------------------------------------------- /Marlin/src/HAL/STM32F1/sdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/STM32F1/sdio.h -------------------------------------------------------------------------------- /Marlin/src/HAL/STM32F1/spi_pins.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/STM32F1/spi_pins.h -------------------------------------------------------------------------------- /Marlin/src/HAL/STM32F1/tft/tft_fsmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/STM32F1/tft/tft_fsmc.h -------------------------------------------------------------------------------- /Marlin/src/HAL/STM32F1/tft/tft_spi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/STM32F1/tft/tft_spi.cpp -------------------------------------------------------------------------------- /Marlin/src/HAL/STM32F1/tft/tft_spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/STM32F1/tft/tft_spi.h -------------------------------------------------------------------------------- /Marlin/src/HAL/STM32F1/tft/xpt2046.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/STM32F1/tft/xpt2046.cpp -------------------------------------------------------------------------------- /Marlin/src/HAL/STM32F1/tft/xpt2046.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/STM32F1/tft/xpt2046.h -------------------------------------------------------------------------------- /Marlin/src/HAL/STM32F1/timers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/STM32F1/timers.cpp -------------------------------------------------------------------------------- /Marlin/src/HAL/STM32F1/timers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/STM32F1/timers.h -------------------------------------------------------------------------------- /Marlin/src/HAL/TEENSY31_32/HAL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/TEENSY31_32/HAL.cpp -------------------------------------------------------------------------------- /Marlin/src/HAL/TEENSY31_32/HAL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/TEENSY31_32/HAL.h -------------------------------------------------------------------------------- /Marlin/src/HAL/TEENSY31_32/HAL_SPI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/TEENSY31_32/HAL_SPI.cpp -------------------------------------------------------------------------------- /Marlin/src/HAL/TEENSY31_32/MarlinSPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/TEENSY31_32/MarlinSPI.h -------------------------------------------------------------------------------- /Marlin/src/HAL/TEENSY31_32/Servo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/TEENSY31_32/Servo.cpp -------------------------------------------------------------------------------- /Marlin/src/HAL/TEENSY31_32/Servo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/TEENSY31_32/Servo.h -------------------------------------------------------------------------------- /Marlin/src/HAL/TEENSY31_32/eeprom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/TEENSY31_32/eeprom.cpp -------------------------------------------------------------------------------- /Marlin/src/HAL/TEENSY31_32/fastio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/TEENSY31_32/fastio.h -------------------------------------------------------------------------------- /Marlin/src/HAL/TEENSY31_32/pinsDebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/TEENSY31_32/pinsDebug.h -------------------------------------------------------------------------------- /Marlin/src/HAL/TEENSY31_32/spi_pins.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/TEENSY31_32/spi_pins.h -------------------------------------------------------------------------------- /Marlin/src/HAL/TEENSY31_32/timers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/TEENSY31_32/timers.cpp -------------------------------------------------------------------------------- /Marlin/src/HAL/TEENSY31_32/timers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/TEENSY31_32/timers.h -------------------------------------------------------------------------------- /Marlin/src/HAL/TEENSY35_36/HAL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/TEENSY35_36/HAL.cpp -------------------------------------------------------------------------------- /Marlin/src/HAL/TEENSY35_36/HAL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/TEENSY35_36/HAL.h -------------------------------------------------------------------------------- /Marlin/src/HAL/TEENSY35_36/HAL_SPI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/TEENSY35_36/HAL_SPI.cpp -------------------------------------------------------------------------------- /Marlin/src/HAL/TEENSY35_36/MarlinSPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/TEENSY35_36/MarlinSPI.h -------------------------------------------------------------------------------- /Marlin/src/HAL/TEENSY35_36/Servo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/TEENSY35_36/Servo.cpp -------------------------------------------------------------------------------- /Marlin/src/HAL/TEENSY35_36/Servo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/TEENSY35_36/Servo.h -------------------------------------------------------------------------------- /Marlin/src/HAL/TEENSY35_36/eeprom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/TEENSY35_36/eeprom.cpp -------------------------------------------------------------------------------- /Marlin/src/HAL/TEENSY35_36/fastio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/TEENSY35_36/fastio.h -------------------------------------------------------------------------------- /Marlin/src/HAL/TEENSY35_36/pinsDebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/TEENSY35_36/pinsDebug.h -------------------------------------------------------------------------------- /Marlin/src/HAL/TEENSY35_36/spi_pins.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/TEENSY35_36/spi_pins.h -------------------------------------------------------------------------------- /Marlin/src/HAL/TEENSY35_36/timers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/TEENSY35_36/timers.cpp -------------------------------------------------------------------------------- /Marlin/src/HAL/TEENSY35_36/timers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/TEENSY35_36/timers.h -------------------------------------------------------------------------------- /Marlin/src/HAL/TEENSY40_41/HAL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/TEENSY40_41/HAL.cpp -------------------------------------------------------------------------------- /Marlin/src/HAL/TEENSY40_41/HAL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/TEENSY40_41/HAL.h -------------------------------------------------------------------------------- /Marlin/src/HAL/TEENSY40_41/Servo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/TEENSY40_41/Servo.cpp -------------------------------------------------------------------------------- /Marlin/src/HAL/TEENSY40_41/Servo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/TEENSY40_41/Servo.h -------------------------------------------------------------------------------- /Marlin/src/HAL/TEENSY40_41/fastio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/TEENSY40_41/fastio.h -------------------------------------------------------------------------------- /Marlin/src/HAL/TEENSY40_41/timers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/TEENSY40_41/timers.h -------------------------------------------------------------------------------- /Marlin/src/HAL/platforms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/platforms.h -------------------------------------------------------------------------------- /Marlin/src/HAL/shared/Delay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/shared/Delay.cpp -------------------------------------------------------------------------------- /Marlin/src/HAL/shared/Delay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/shared/Delay.h -------------------------------------------------------------------------------- /Marlin/src/HAL/shared/HAL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/shared/HAL.cpp -------------------------------------------------------------------------------- /Marlin/src/HAL/shared/HAL_SPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/shared/HAL_SPI.h -------------------------------------------------------------------------------- /Marlin/src/HAL/shared/HAL_ST7920.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/shared/HAL_ST7920.h -------------------------------------------------------------------------------- /Marlin/src/HAL/shared/Marduino.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/shared/Marduino.h -------------------------------------------------------------------------------- /Marlin/src/HAL/shared/MinSerial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/shared/MinSerial.cpp -------------------------------------------------------------------------------- /Marlin/src/HAL/shared/MinSerial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/shared/MinSerial.h -------------------------------------------------------------------------------- /Marlin/src/HAL/shared/eeprom_api.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/shared/eeprom_api.cpp -------------------------------------------------------------------------------- /Marlin/src/HAL/shared/eeprom_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/shared/eeprom_api.h -------------------------------------------------------------------------------- /Marlin/src/HAL/shared/eeprom_if.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/shared/eeprom_if.h -------------------------------------------------------------------------------- /Marlin/src/HAL/shared/esp_wifi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/shared/esp_wifi.cpp -------------------------------------------------------------------------------- /Marlin/src/HAL/shared/esp_wifi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/shared/esp_wifi.h -------------------------------------------------------------------------------- /Marlin/src/HAL/shared/fauxpins.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/shared/fauxpins.h -------------------------------------------------------------------------------- /Marlin/src/HAL/shared/math_32bit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/shared/math_32bit.h -------------------------------------------------------------------------------- /Marlin/src/HAL/shared/progmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/shared/progmem.h -------------------------------------------------------------------------------- /Marlin/src/HAL/shared/servo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/shared/servo.cpp -------------------------------------------------------------------------------- /Marlin/src/HAL/shared/servo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/HAL/shared/servo.h -------------------------------------------------------------------------------- /Marlin/src/MarlinCore.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/MarlinCore.cpp -------------------------------------------------------------------------------- /Marlin/src/MarlinCore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/MarlinCore.h -------------------------------------------------------------------------------- /Marlin/src/core/boards.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/core/boards.h -------------------------------------------------------------------------------- /Marlin/src/core/bug_on.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/core/bug_on.h -------------------------------------------------------------------------------- /Marlin/src/core/debug_out.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/core/debug_out.h -------------------------------------------------------------------------------- /Marlin/src/core/debug_section.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/core/debug_section.h -------------------------------------------------------------------------------- /Marlin/src/core/drivers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/core/drivers.h -------------------------------------------------------------------------------- /Marlin/src/core/language.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/core/language.h -------------------------------------------------------------------------------- /Marlin/src/core/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/core/macros.h -------------------------------------------------------------------------------- /Marlin/src/core/millis_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/core/millis_t.h -------------------------------------------------------------------------------- /Marlin/src/core/multi_language.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/core/multi_language.h -------------------------------------------------------------------------------- /Marlin/src/core/serial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/core/serial.cpp -------------------------------------------------------------------------------- /Marlin/src/core/serial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/core/serial.h -------------------------------------------------------------------------------- /Marlin/src/core/serial_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/core/serial_base.h -------------------------------------------------------------------------------- /Marlin/src/core/serial_hook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/core/serial_hook.h -------------------------------------------------------------------------------- /Marlin/src/core/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/core/types.h -------------------------------------------------------------------------------- /Marlin/src/core/utility.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/core/utility.cpp -------------------------------------------------------------------------------- /Marlin/src/core/utility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/core/utility.h -------------------------------------------------------------------------------- /Marlin/src/feature/adc/adc_mcp3426.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/feature/adc/adc_mcp3426.h -------------------------------------------------------------------------------- /Marlin/src/feature/ammeter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/feature/ammeter.cpp -------------------------------------------------------------------------------- /Marlin/src/feature/ammeter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/feature/ammeter.h -------------------------------------------------------------------------------- /Marlin/src/feature/babystep.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/feature/babystep.cpp -------------------------------------------------------------------------------- /Marlin/src/feature/babystep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/feature/babystep.h -------------------------------------------------------------------------------- /Marlin/src/feature/backlash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/feature/backlash.cpp -------------------------------------------------------------------------------- /Marlin/src/feature/backlash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/feature/backlash.h -------------------------------------------------------------------------------- /Marlin/src/feature/baricuda.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/feature/baricuda.cpp -------------------------------------------------------------------------------- /Marlin/src/feature/baricuda.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/feature/baricuda.h -------------------------------------------------------------------------------- /Marlin/src/feature/binary_stream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/feature/binary_stream.cpp -------------------------------------------------------------------------------- /Marlin/src/feature/binary_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/feature/binary_stream.h -------------------------------------------------------------------------------- /Marlin/src/feature/bltouch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/feature/bltouch.cpp -------------------------------------------------------------------------------- /Marlin/src/feature/bltouch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/feature/bltouch.h -------------------------------------------------------------------------------- /Marlin/src/feature/cancel_object.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/feature/cancel_object.cpp -------------------------------------------------------------------------------- /Marlin/src/feature/cancel_object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/feature/cancel_object.h -------------------------------------------------------------------------------- /Marlin/src/feature/caselight.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/feature/caselight.cpp -------------------------------------------------------------------------------- /Marlin/src/feature/caselight.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/feature/caselight.h -------------------------------------------------------------------------------- /Marlin/src/feature/closedloop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/feature/closedloop.cpp -------------------------------------------------------------------------------- /Marlin/src/feature/closedloop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/feature/closedloop.h -------------------------------------------------------------------------------- /Marlin/src/feature/controllerfan.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/feature/controllerfan.cpp -------------------------------------------------------------------------------- /Marlin/src/feature/controllerfan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/feature/controllerfan.h -------------------------------------------------------------------------------- /Marlin/src/feature/cooler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/feature/cooler.cpp -------------------------------------------------------------------------------- /Marlin/src/feature/cooler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/feature/cooler.h -------------------------------------------------------------------------------- /Marlin/src/feature/dac/dac_mcp4728.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/feature/dac/dac_mcp4728.h -------------------------------------------------------------------------------- /Marlin/src/feature/dac/stepper_dac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/feature/dac/stepper_dac.h -------------------------------------------------------------------------------- /Marlin/src/feature/digipot/digipot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/feature/digipot/digipot.h -------------------------------------------------------------------------------- /Marlin/src/feature/direct_stepping.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/feature/direct_stepping.h -------------------------------------------------------------------------------- /Marlin/src/feature/e_parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/feature/e_parser.cpp -------------------------------------------------------------------------------- /Marlin/src/feature/e_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/feature/e_parser.h -------------------------------------------------------------------------------- /Marlin/src/feature/easythreed_ui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/feature/easythreed_ui.cpp -------------------------------------------------------------------------------- /Marlin/src/feature/easythreed_ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/feature/easythreed_ui.h -------------------------------------------------------------------------------- /Marlin/src/feature/encoder_i2c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/feature/encoder_i2c.cpp -------------------------------------------------------------------------------- /Marlin/src/feature/encoder_i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/feature/encoder_i2c.h -------------------------------------------------------------------------------- /Marlin/src/feature/ethernet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/feature/ethernet.cpp -------------------------------------------------------------------------------- /Marlin/src/feature/ethernet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/feature/ethernet.h -------------------------------------------------------------------------------- /Marlin/src/feature/fancheck.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/feature/fancheck.cpp -------------------------------------------------------------------------------- /Marlin/src/feature/fancheck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/feature/fancheck.h -------------------------------------------------------------------------------- /Marlin/src/feature/fanmux.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/feature/fanmux.cpp -------------------------------------------------------------------------------- /Marlin/src/feature/fanmux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/feature/fanmux.h -------------------------------------------------------------------------------- /Marlin/src/feature/filwidth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/feature/filwidth.cpp -------------------------------------------------------------------------------- /Marlin/src/feature/filwidth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/feature/filwidth.h -------------------------------------------------------------------------------- /Marlin/src/feature/fwretract.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/feature/fwretract.cpp -------------------------------------------------------------------------------- /Marlin/src/feature/fwretract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/feature/fwretract.h -------------------------------------------------------------------------------- /Marlin/src/feature/host_actions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/feature/host_actions.cpp -------------------------------------------------------------------------------- /Marlin/src/feature/host_actions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/feature/host_actions.h -------------------------------------------------------------------------------- /Marlin/src/feature/hotend_idle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/feature/hotend_idle.cpp -------------------------------------------------------------------------------- /Marlin/src/feature/hotend_idle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/feature/hotend_idle.h -------------------------------------------------------------------------------- /Marlin/src/feature/joystick.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/feature/joystick.cpp -------------------------------------------------------------------------------- /Marlin/src/feature/joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/feature/joystick.h -------------------------------------------------------------------------------- /Marlin/src/feature/leds/blinkm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/feature/leds/blinkm.cpp -------------------------------------------------------------------------------- /Marlin/src/feature/leds/blinkm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/feature/leds/blinkm.h -------------------------------------------------------------------------------- /Marlin/src/feature/leds/leds.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/feature/leds/leds.cpp -------------------------------------------------------------------------------- /Marlin/src/feature/leds/leds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/feature/leds/leds.h -------------------------------------------------------------------------------- /Marlin/src/feature/leds/neopixel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/feature/leds/neopixel.cpp -------------------------------------------------------------------------------- /Marlin/src/feature/leds/neopixel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/feature/leds/neopixel.h -------------------------------------------------------------------------------- /Marlin/src/feature/leds/pca9533.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/feature/leds/pca9533.cpp -------------------------------------------------------------------------------- /Marlin/src/feature/leds/pca9533.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/feature/leds/pca9533.h -------------------------------------------------------------------------------- /Marlin/src/feature/leds/pca9632.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/feature/leds/pca9632.cpp -------------------------------------------------------------------------------- /Marlin/src/feature/leds/pca9632.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/feature/leds/pca9632.h -------------------------------------------------------------------------------- /Marlin/src/feature/leds/tempstat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/feature/leds/tempstat.cpp -------------------------------------------------------------------------------- /Marlin/src/feature/leds/tempstat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/feature/leds/tempstat.h -------------------------------------------------------------------------------- /Marlin/src/feature/max7219.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/feature/max7219.cpp -------------------------------------------------------------------------------- /Marlin/src/feature/max7219.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/feature/max7219.h -------------------------------------------------------------------------------- /Marlin/src/feature/meatpack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/feature/meatpack.cpp -------------------------------------------------------------------------------- /Marlin/src/feature/meatpack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/feature/meatpack.h -------------------------------------------------------------------------------- /Marlin/src/feature/mixing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/feature/mixing.cpp -------------------------------------------------------------------------------- /Marlin/src/feature/mixing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/feature/mixing.h -------------------------------------------------------------------------------- /Marlin/src/feature/mmu/mmu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/feature/mmu/mmu.cpp -------------------------------------------------------------------------------- /Marlin/src/feature/mmu/mmu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/feature/mmu/mmu.h -------------------------------------------------------------------------------- /Marlin/src/feature/mmu/mmu2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/feature/mmu/mmu2.cpp -------------------------------------------------------------------------------- /Marlin/src/feature/mmu/mmu2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/feature/mmu/mmu2.h -------------------------------------------------------------------------------- /Marlin/src/feature/pause.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/feature/pause.cpp -------------------------------------------------------------------------------- /Marlin/src/feature/pause.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/feature/pause.h -------------------------------------------------------------------------------- /Marlin/src/feature/power.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/feature/power.cpp -------------------------------------------------------------------------------- /Marlin/src/feature/power.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/feature/power.h -------------------------------------------------------------------------------- /Marlin/src/feature/power_monitor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/feature/power_monitor.cpp -------------------------------------------------------------------------------- /Marlin/src/feature/power_monitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/feature/power_monitor.h -------------------------------------------------------------------------------- /Marlin/src/feature/powerloss.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/feature/powerloss.cpp -------------------------------------------------------------------------------- /Marlin/src/feature/powerloss.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/feature/powerloss.h -------------------------------------------------------------------------------- /Marlin/src/feature/probe_temp_comp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/feature/probe_temp_comp.h -------------------------------------------------------------------------------- /Marlin/src/feature/repeat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/feature/repeat.cpp -------------------------------------------------------------------------------- /Marlin/src/feature/repeat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/feature/repeat.h -------------------------------------------------------------------------------- /Marlin/src/feature/runout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/feature/runout.cpp -------------------------------------------------------------------------------- /Marlin/src/feature/runout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/feature/runout.h -------------------------------------------------------------------------------- /Marlin/src/feature/solenoid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/feature/solenoid.cpp -------------------------------------------------------------------------------- /Marlin/src/feature/solenoid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/feature/solenoid.h -------------------------------------------------------------------------------- /Marlin/src/feature/spindle_laser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/feature/spindle_laser.cpp -------------------------------------------------------------------------------- /Marlin/src/feature/spindle_laser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/feature/spindle_laser.h -------------------------------------------------------------------------------- /Marlin/src/feature/tmc_util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/feature/tmc_util.cpp -------------------------------------------------------------------------------- /Marlin/src/feature/tmc_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/feature/tmc_util.h -------------------------------------------------------------------------------- /Marlin/src/feature/tramming.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/feature/tramming.cpp -------------------------------------------------------------------------------- /Marlin/src/feature/tramming.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/feature/tramming.h -------------------------------------------------------------------------------- /Marlin/src/feature/twibus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/feature/twibus.cpp -------------------------------------------------------------------------------- /Marlin/src/feature/twibus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/feature/twibus.h -------------------------------------------------------------------------------- /Marlin/src/feature/x_twist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/feature/x_twist.cpp -------------------------------------------------------------------------------- /Marlin/src/feature/x_twist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/feature/x_twist.h -------------------------------------------------------------------------------- /Marlin/src/feature/z_stepper_align.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/feature/z_stepper_align.h -------------------------------------------------------------------------------- /Marlin/src/gcode/bedlevel/G26.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/gcode/bedlevel/G26.cpp -------------------------------------------------------------------------------- /Marlin/src/gcode/bedlevel/G35.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/gcode/bedlevel/G35.cpp -------------------------------------------------------------------------------- /Marlin/src/gcode/bedlevel/G42.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/gcode/bedlevel/G42.cpp -------------------------------------------------------------------------------- /Marlin/src/gcode/bedlevel/M420.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/gcode/bedlevel/M420.cpp -------------------------------------------------------------------------------- /Marlin/src/gcode/calibrate/G28.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/gcode/calibrate/G28.cpp -------------------------------------------------------------------------------- /Marlin/src/gcode/calibrate/G33.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/gcode/calibrate/G33.cpp -------------------------------------------------------------------------------- /Marlin/src/gcode/calibrate/G34.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/gcode/calibrate/G34.cpp -------------------------------------------------------------------------------- /Marlin/src/gcode/calibrate/G425.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/gcode/calibrate/G425.cpp -------------------------------------------------------------------------------- /Marlin/src/gcode/calibrate/M100.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/gcode/calibrate/M100.cpp -------------------------------------------------------------------------------- /Marlin/src/gcode/calibrate/M12.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/gcode/calibrate/M12.cpp -------------------------------------------------------------------------------- /Marlin/src/gcode/calibrate/M425.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/gcode/calibrate/M425.cpp -------------------------------------------------------------------------------- /Marlin/src/gcode/calibrate/M48.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/gcode/calibrate/M48.cpp -------------------------------------------------------------------------------- /Marlin/src/gcode/calibrate/M665.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/gcode/calibrate/M665.cpp -------------------------------------------------------------------------------- /Marlin/src/gcode/calibrate/M666.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/gcode/calibrate/M666.cpp -------------------------------------------------------------------------------- /Marlin/src/gcode/calibrate/M852.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/gcode/calibrate/M852.cpp -------------------------------------------------------------------------------- /Marlin/src/gcode/config/M217.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/gcode/config/M217.cpp -------------------------------------------------------------------------------- /Marlin/src/gcode/config/M218.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/gcode/config/M218.cpp -------------------------------------------------------------------------------- /Marlin/src/gcode/config/M220.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/gcode/config/M220.cpp -------------------------------------------------------------------------------- /Marlin/src/gcode/config/M221.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/gcode/config/M221.cpp -------------------------------------------------------------------------------- /Marlin/src/gcode/config/M281.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/gcode/config/M281.cpp -------------------------------------------------------------------------------- /Marlin/src/gcode/config/M301.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/gcode/config/M301.cpp -------------------------------------------------------------------------------- /Marlin/src/gcode/config/M302.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/gcode/config/M302.cpp -------------------------------------------------------------------------------- /Marlin/src/gcode/config/M304.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/gcode/config/M304.cpp -------------------------------------------------------------------------------- /Marlin/src/gcode/config/M305.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/gcode/config/M305.cpp -------------------------------------------------------------------------------- /Marlin/src/gcode/config/M309.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/gcode/config/M309.cpp -------------------------------------------------------------------------------- /Marlin/src/gcode/config/M43.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/gcode/config/M43.cpp -------------------------------------------------------------------------------- /Marlin/src/gcode/config/M540.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/gcode/config/M540.cpp -------------------------------------------------------------------------------- /Marlin/src/gcode/config/M575.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/gcode/config/M575.cpp -------------------------------------------------------------------------------- /Marlin/src/gcode/config/M672.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/gcode/config/M672.cpp -------------------------------------------------------------------------------- /Marlin/src/gcode/config/M92.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/gcode/config/M92.cpp -------------------------------------------------------------------------------- /Marlin/src/gcode/control/M10-M11.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/gcode/control/M10-M11.cpp -------------------------------------------------------------------------------- /Marlin/src/gcode/control/M111.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/gcode/control/M111.cpp -------------------------------------------------------------------------------- /Marlin/src/gcode/control/M211.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/gcode/control/M211.cpp -------------------------------------------------------------------------------- /Marlin/src/gcode/control/M226.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/gcode/control/M226.cpp -------------------------------------------------------------------------------- /Marlin/src/gcode/control/M280.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/gcode/control/M280.cpp -------------------------------------------------------------------------------- /Marlin/src/gcode/control/M282.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/gcode/control/M282.cpp -------------------------------------------------------------------------------- /Marlin/src/gcode/control/M3-M5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/gcode/control/M3-M5.cpp -------------------------------------------------------------------------------- /Marlin/src/gcode/control/M42.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/gcode/control/M42.cpp -------------------------------------------------------------------------------- /Marlin/src/gcode/control/M605.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/gcode/control/M605.cpp -------------------------------------------------------------------------------- /Marlin/src/gcode/control/M7-M9.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/gcode/control/M7-M9.cpp -------------------------------------------------------------------------------- /Marlin/src/gcode/control/M80_M81.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/gcode/control/M80_M81.cpp -------------------------------------------------------------------------------- /Marlin/src/gcode/control/M85.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/gcode/control/M85.cpp -------------------------------------------------------------------------------- /Marlin/src/gcode/control/M997.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/gcode/control/M997.cpp -------------------------------------------------------------------------------- /Marlin/src/gcode/control/M999.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/gcode/control/M999.cpp -------------------------------------------------------------------------------- /Marlin/src/gcode/control/T.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/gcode/control/T.cpp -------------------------------------------------------------------------------- /Marlin/src/gcode/gcode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/gcode/gcode.cpp -------------------------------------------------------------------------------- /Marlin/src/gcode/gcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/gcode/gcode.h -------------------------------------------------------------------------------- /Marlin/src/gcode/gcode_d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/gcode/gcode_d.cpp -------------------------------------------------------------------------------- /Marlin/src/gcode/geometry/G92.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/gcode/geometry/G92.cpp -------------------------------------------------------------------------------- /Marlin/src/gcode/host/M110.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/gcode/host/M110.cpp -------------------------------------------------------------------------------- /Marlin/src/gcode/host/M113.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/gcode/host/M113.cpp -------------------------------------------------------------------------------- /Marlin/src/gcode/host/M114.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/gcode/host/M114.cpp -------------------------------------------------------------------------------- /Marlin/src/gcode/host/M115.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/gcode/host/M115.cpp -------------------------------------------------------------------------------- /Marlin/src/gcode/host/M118.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/gcode/host/M118.cpp -------------------------------------------------------------------------------- /Marlin/src/gcode/host/M119.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/gcode/host/M119.cpp -------------------------------------------------------------------------------- /Marlin/src/gcode/host/M154.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/gcode/host/M154.cpp -------------------------------------------------------------------------------- /Marlin/src/gcode/host/M16.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/gcode/host/M16.cpp -------------------------------------------------------------------------------- /Marlin/src/gcode/host/M360.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/gcode/host/M360.cpp -------------------------------------------------------------------------------- /Marlin/src/gcode/host/M876.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/gcode/host/M876.cpp -------------------------------------------------------------------------------- /Marlin/src/gcode/lcd/M0_M1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/gcode/lcd/M0_M1.cpp -------------------------------------------------------------------------------- /Marlin/src/gcode/lcd/M117.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/gcode/lcd/M117.cpp -------------------------------------------------------------------------------- /Marlin/src/gcode/lcd/M145.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/gcode/lcd/M145.cpp -------------------------------------------------------------------------------- /Marlin/src/gcode/lcd/M250.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/gcode/lcd/M250.cpp -------------------------------------------------------------------------------- /Marlin/src/gcode/lcd/M255.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/gcode/lcd/M255.cpp -------------------------------------------------------------------------------- /Marlin/src/gcode/lcd/M256.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/gcode/lcd/M256.cpp -------------------------------------------------------------------------------- /Marlin/src/gcode/lcd/M300.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/gcode/lcd/M300.cpp -------------------------------------------------------------------------------- /Marlin/src/gcode/lcd/M414.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/gcode/lcd/M414.cpp -------------------------------------------------------------------------------- /Marlin/src/gcode/lcd/M73.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/gcode/lcd/M73.cpp -------------------------------------------------------------------------------- /Marlin/src/gcode/lcd/M995.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/gcode/lcd/M995.cpp -------------------------------------------------------------------------------- /Marlin/src/gcode/motion/G0_G1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/gcode/motion/G0_G1.cpp -------------------------------------------------------------------------------- /Marlin/src/gcode/motion/G2_G3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/gcode/motion/G2_G3.cpp -------------------------------------------------------------------------------- /Marlin/src/gcode/motion/G4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/gcode/motion/G4.cpp -------------------------------------------------------------------------------- /Marlin/src/gcode/motion/G5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/gcode/motion/G5.cpp -------------------------------------------------------------------------------- /Marlin/src/gcode/motion/G6.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/gcode/motion/G6.cpp -------------------------------------------------------------------------------- /Marlin/src/gcode/motion/G80.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/gcode/motion/G80.cpp -------------------------------------------------------------------------------- /Marlin/src/gcode/motion/M290.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/gcode/motion/M290.cpp -------------------------------------------------------------------------------- /Marlin/src/gcode/motion/M400.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/gcode/motion/M400.cpp -------------------------------------------------------------------------------- /Marlin/src/gcode/parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/gcode/parser.cpp -------------------------------------------------------------------------------- /Marlin/src/gcode/parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/gcode/parser.h -------------------------------------------------------------------------------- /Marlin/src/gcode/probe/G30.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/gcode/probe/G30.cpp -------------------------------------------------------------------------------- /Marlin/src/gcode/probe/G31_G32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/gcode/probe/G31_G32.cpp -------------------------------------------------------------------------------- /Marlin/src/gcode/probe/G38.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/gcode/probe/G38.cpp -------------------------------------------------------------------------------- /Marlin/src/gcode/probe/M102.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/gcode/probe/M102.cpp -------------------------------------------------------------------------------- /Marlin/src/gcode/probe/M401_M402.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/gcode/probe/M401_M402.cpp -------------------------------------------------------------------------------- /Marlin/src/gcode/probe/M423.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/gcode/probe/M423.cpp -------------------------------------------------------------------------------- /Marlin/src/gcode/probe/M851.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/gcode/probe/M851.cpp -------------------------------------------------------------------------------- /Marlin/src/gcode/probe/M951.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/gcode/probe/M951.cpp -------------------------------------------------------------------------------- /Marlin/src/gcode/queue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/gcode/queue.cpp -------------------------------------------------------------------------------- /Marlin/src/gcode/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/gcode/queue.h -------------------------------------------------------------------------------- /Marlin/src/gcode/scara/M360-M364.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/gcode/scara/M360-M364.cpp -------------------------------------------------------------------------------- /Marlin/src/gcode/sd/M1001.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/gcode/sd/M1001.cpp -------------------------------------------------------------------------------- /Marlin/src/gcode/sd/M20.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/gcode/sd/M20.cpp -------------------------------------------------------------------------------- /Marlin/src/gcode/sd/M21_M22.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/gcode/sd/M21_M22.cpp -------------------------------------------------------------------------------- /Marlin/src/gcode/sd/M23.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/gcode/sd/M23.cpp -------------------------------------------------------------------------------- /Marlin/src/gcode/sd/M24_M25.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/gcode/sd/M24_M25.cpp -------------------------------------------------------------------------------- /Marlin/src/gcode/sd/M26.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/gcode/sd/M26.cpp -------------------------------------------------------------------------------- /Marlin/src/gcode/sd/M27.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/gcode/sd/M27.cpp -------------------------------------------------------------------------------- /Marlin/src/gcode/sd/M28_M29.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/gcode/sd/M28_M29.cpp -------------------------------------------------------------------------------- /Marlin/src/gcode/sd/M30.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/gcode/sd/M30.cpp -------------------------------------------------------------------------------- /Marlin/src/gcode/sd/M32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/gcode/sd/M32.cpp -------------------------------------------------------------------------------- /Marlin/src/gcode/sd/M33.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/gcode/sd/M33.cpp -------------------------------------------------------------------------------- /Marlin/src/gcode/sd/M34.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/gcode/sd/M34.cpp -------------------------------------------------------------------------------- /Marlin/src/gcode/sd/M524.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/gcode/sd/M524.cpp -------------------------------------------------------------------------------- /Marlin/src/gcode/sd/M808.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/gcode/sd/M808.cpp -------------------------------------------------------------------------------- /Marlin/src/gcode/sd/M928.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/gcode/sd/M928.cpp -------------------------------------------------------------------------------- /Marlin/src/gcode/stats/M31.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/gcode/stats/M31.cpp -------------------------------------------------------------------------------- /Marlin/src/gcode/stats/M75-M78.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/gcode/stats/M75-M78.cpp -------------------------------------------------------------------------------- /Marlin/src/gcode/temp/M104_M109.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/gcode/temp/M104_M109.cpp -------------------------------------------------------------------------------- /Marlin/src/gcode/temp/M105.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/gcode/temp/M105.cpp -------------------------------------------------------------------------------- /Marlin/src/gcode/temp/M106_M107.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/gcode/temp/M106_M107.cpp -------------------------------------------------------------------------------- /Marlin/src/gcode/temp/M123.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/gcode/temp/M123.cpp -------------------------------------------------------------------------------- /Marlin/src/gcode/temp/M140_M190.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/gcode/temp/M140_M190.cpp -------------------------------------------------------------------------------- /Marlin/src/gcode/temp/M141_M191.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/gcode/temp/M141_M191.cpp -------------------------------------------------------------------------------- /Marlin/src/gcode/temp/M143_M193.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/gcode/temp/M143_M193.cpp -------------------------------------------------------------------------------- /Marlin/src/gcode/temp/M155.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/gcode/temp/M155.cpp -------------------------------------------------------------------------------- /Marlin/src/gcode/temp/M192.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/gcode/temp/M192.cpp -------------------------------------------------------------------------------- /Marlin/src/gcode/temp/M303.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/gcode/temp/M303.cpp -------------------------------------------------------------------------------- /Marlin/src/gcode/temp/M306.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/gcode/temp/M306.cpp -------------------------------------------------------------------------------- /Marlin/src/gcode/units/G20_G21.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/gcode/units/G20_G21.cpp -------------------------------------------------------------------------------- /Marlin/src/gcode/units/M149.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/gcode/units/M149.cpp -------------------------------------------------------------------------------- /Marlin/src/gcode/units/M82_M83.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/gcode/units/M82_M83.cpp -------------------------------------------------------------------------------- /Marlin/src/inc/Changes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/inc/Changes.h -------------------------------------------------------------------------------- /Marlin/src/inc/Conditionals_LCD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/inc/Conditionals_LCD.h -------------------------------------------------------------------------------- /Marlin/src/inc/Conditionals_adv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/inc/Conditionals_adv.h -------------------------------------------------------------------------------- /Marlin/src/inc/Conditionals_post.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/inc/Conditionals_post.h -------------------------------------------------------------------------------- /Marlin/src/inc/MarlinConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/inc/MarlinConfig.h -------------------------------------------------------------------------------- /Marlin/src/inc/MarlinConfigPre.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/inc/MarlinConfigPre.h -------------------------------------------------------------------------------- /Marlin/src/inc/SanityCheck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/inc/SanityCheck.h -------------------------------------------------------------------------------- /Marlin/src/inc/Version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/inc/Version.h -------------------------------------------------------------------------------- /Marlin/src/inc/Warnings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/inc/Warnings.cpp -------------------------------------------------------------------------------- /Marlin/src/lcd/buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/lcd/buttons.h -------------------------------------------------------------------------------- /Marlin/src/lcd/dogm/lcdprint_u8g.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/lcd/dogm/lcdprint_u8g.cpp -------------------------------------------------------------------------------- /Marlin/src/lcd/dogm/marlinui_DOGM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/lcd/dogm/marlinui_DOGM.h -------------------------------------------------------------------------------- /Marlin/src/lcd/dogm/status/ammeter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/lcd/dogm/status/ammeter.h -------------------------------------------------------------------------------- /Marlin/src/lcd/dogm/status/bed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/lcd/dogm/status/bed.h -------------------------------------------------------------------------------- /Marlin/src/lcd/dogm/status/chamber.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/lcd/dogm/status/chamber.h -------------------------------------------------------------------------------- /Marlin/src/lcd/dogm/status/cooler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/lcd/dogm/status/cooler.h -------------------------------------------------------------------------------- /Marlin/src/lcd/dogm/status/cutter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/lcd/dogm/status/cutter.h -------------------------------------------------------------------------------- /Marlin/src/lcd/dogm/status/fan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/lcd/dogm/status/fan.h -------------------------------------------------------------------------------- /Marlin/src/lcd/dogm/status/hotend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/lcd/dogm/status/hotend.h -------------------------------------------------------------------------------- /Marlin/src/lcd/dogm/u8g_fontutf8.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/lcd/dogm/u8g_fontutf8.cpp -------------------------------------------------------------------------------- /Marlin/src/lcd/dogm/u8g_fontutf8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/lcd/dogm/u8g_fontutf8.h -------------------------------------------------------------------------------- /Marlin/src/lcd/e3v2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/lcd/e3v2/README.md -------------------------------------------------------------------------------- /Marlin/src/lcd/e3v2/common/encoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/lcd/e3v2/common/encoder.h -------------------------------------------------------------------------------- /Marlin/src/lcd/e3v2/creality/dwin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/lcd/e3v2/creality/dwin.h -------------------------------------------------------------------------------- /Marlin/src/lcd/e3v2/jyersui/dwin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/lcd/e3v2/jyersui/dwin.cpp -------------------------------------------------------------------------------- /Marlin/src/lcd/e3v2/jyersui/dwin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/lcd/e3v2/jyersui/dwin.h -------------------------------------------------------------------------------- /Marlin/src/lcd/e3v2/proui/base64.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/lcd/e3v2/proui/base64.hpp -------------------------------------------------------------------------------- /Marlin/src/lcd/e3v2/proui/dwin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/lcd/e3v2/proui/dwin.cpp -------------------------------------------------------------------------------- /Marlin/src/lcd/e3v2/proui/dwin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/lcd/e3v2/proui/dwin.h -------------------------------------------------------------------------------- /Marlin/src/lcd/e3v2/proui/dwin_lcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/lcd/e3v2/proui/dwin_lcd.h -------------------------------------------------------------------------------- /Marlin/src/lcd/e3v2/proui/dwinui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/lcd/e3v2/proui/dwinui.cpp -------------------------------------------------------------------------------- /Marlin/src/lcd/e3v2/proui/dwinui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/lcd/e3v2/proui/dwinui.h -------------------------------------------------------------------------------- /Marlin/src/lcd/e3v2/proui/menus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/lcd/e3v2/proui/menus.cpp -------------------------------------------------------------------------------- /Marlin/src/lcd/e3v2/proui/menus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/lcd/e3v2/proui/menus.h -------------------------------------------------------------------------------- /Marlin/src/lcd/e3v2/proui/plot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/lcd/e3v2/proui/plot.cpp -------------------------------------------------------------------------------- /Marlin/src/lcd/e3v2/proui/plot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/lcd/e3v2/proui/plot.h -------------------------------------------------------------------------------- /Marlin/src/lcd/extui/malyan/malyan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/lcd/extui/malyan/malyan.h -------------------------------------------------------------------------------- /Marlin/src/lcd/extui/ui_api.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/lcd/extui/ui_api.cpp -------------------------------------------------------------------------------- /Marlin/src/lcd/extui/ui_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/lcd/extui/ui_api.h -------------------------------------------------------------------------------- /Marlin/src/lcd/lcdprint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/lcd/lcdprint.cpp -------------------------------------------------------------------------------- /Marlin/src/lcd/lcdprint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/lcd/lcdprint.h -------------------------------------------------------------------------------- /Marlin/src/lcd/marlinui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/lcd/marlinui.cpp -------------------------------------------------------------------------------- /Marlin/src/lcd/marlinui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/lcd/marlinui.h -------------------------------------------------------------------------------- /Marlin/src/lcd/menu/game/brickout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/lcd/menu/game/brickout.h -------------------------------------------------------------------------------- /Marlin/src/lcd/menu/game/game.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/lcd/menu/game/game.cpp -------------------------------------------------------------------------------- /Marlin/src/lcd/menu/game/game.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/lcd/menu/game/game.h -------------------------------------------------------------------------------- /Marlin/src/lcd/menu/game/invaders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/lcd/menu/game/invaders.h -------------------------------------------------------------------------------- /Marlin/src/lcd/menu/game/maze.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/lcd/menu/game/maze.cpp -------------------------------------------------------------------------------- /Marlin/src/lcd/menu/game/maze.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/lcd/menu/game/maze.h -------------------------------------------------------------------------------- /Marlin/src/lcd/menu/game/snake.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/lcd/menu/game/snake.cpp -------------------------------------------------------------------------------- /Marlin/src/lcd/menu/game/snake.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/lcd/menu/game/snake.h -------------------------------------------------------------------------------- /Marlin/src/lcd/menu/game/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/lcd/menu/game/types.h -------------------------------------------------------------------------------- /Marlin/src/lcd/menu/menu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/lcd/menu/menu.cpp -------------------------------------------------------------------------------- /Marlin/src/lcd/menu/menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/lcd/menu/menu.h -------------------------------------------------------------------------------- /Marlin/src/lcd/menu/menu_addon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/lcd/menu/menu_addon.h -------------------------------------------------------------------------------- /Marlin/src/lcd/menu/menu_game.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/lcd/menu/menu_game.cpp -------------------------------------------------------------------------------- /Marlin/src/lcd/menu/menu_info.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/lcd/menu/menu_info.cpp -------------------------------------------------------------------------------- /Marlin/src/lcd/menu/menu_item.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/lcd/menu/menu_item.h -------------------------------------------------------------------------------- /Marlin/src/lcd/menu/menu_led.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/lcd/menu/menu_led.cpp -------------------------------------------------------------------------------- /Marlin/src/lcd/menu/menu_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/lcd/menu/menu_main.cpp -------------------------------------------------------------------------------- /Marlin/src/lcd/menu/menu_media.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/lcd/menu/menu_media.cpp -------------------------------------------------------------------------------- /Marlin/src/lcd/menu/menu_mixer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/lcd/menu/menu_mixer.cpp -------------------------------------------------------------------------------- /Marlin/src/lcd/menu/menu_mmu2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/lcd/menu/menu_mmu2.cpp -------------------------------------------------------------------------------- /Marlin/src/lcd/menu/menu_mmu2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/lcd/menu/menu_mmu2.h -------------------------------------------------------------------------------- /Marlin/src/lcd/menu/menu_motion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/lcd/menu/menu_motion.cpp -------------------------------------------------------------------------------- /Marlin/src/lcd/menu/menu_tmc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/lcd/menu/menu_tmc.cpp -------------------------------------------------------------------------------- /Marlin/src/lcd/menu/menu_tune.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/lcd/menu/menu_tune.cpp -------------------------------------------------------------------------------- /Marlin/src/lcd/menu/menu_ubl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/lcd/menu/menu_ubl.cpp -------------------------------------------------------------------------------- /Marlin/src/lcd/menu/menu_x_twist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/lcd/menu/menu_x_twist.cpp -------------------------------------------------------------------------------- /Marlin/src/lcd/scaled_tft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/lcd/scaled_tft.h -------------------------------------------------------------------------------- /Marlin/src/lcd/tft/bitmaps/back.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/lcd/tft/bitmaps/back.bmp -------------------------------------------------------------------------------- /Marlin/src/lcd/tft/bitmaps/bed.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/lcd/tft/bitmaps/bed.bmp -------------------------------------------------------------------------------- /Marlin/src/lcd/tft/bitmaps/down.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/lcd/tft/bitmaps/down.bmp -------------------------------------------------------------------------------- /Marlin/src/lcd/tft/bitmaps/fan0.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/lcd/tft/bitmaps/fan0.bmp -------------------------------------------------------------------------------- /Marlin/src/lcd/tft/bitmaps/fan1.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/lcd/tft/bitmaps/fan1.bmp -------------------------------------------------------------------------------- /Marlin/src/lcd/tft/bitmaps/home.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/lcd/tft/bitmaps/home.bmp -------------------------------------------------------------------------------- /Marlin/src/lcd/tft/bitmaps/left.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/lcd/tft/bitmaps/left.bmp -------------------------------------------------------------------------------- /Marlin/src/lcd/tft/bitmaps/menu.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/lcd/tft/bitmaps/menu.bmp -------------------------------------------------------------------------------- /Marlin/src/lcd/tft/bitmaps/pause.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/lcd/tft/bitmaps/pause.bmp -------------------------------------------------------------------------------- /Marlin/src/lcd/tft/bitmaps/right.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/lcd/tft/bitmaps/right.bmp -------------------------------------------------------------------------------- /Marlin/src/lcd/tft/bitmaps/sd.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/lcd/tft/bitmaps/sd.bmp -------------------------------------------------------------------------------- /Marlin/src/lcd/tft/bitmaps/up.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/lcd/tft/bitmaps/up.bmp -------------------------------------------------------------------------------- /Marlin/src/lcd/tft/canvas.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/lcd/tft/canvas.cpp -------------------------------------------------------------------------------- /Marlin/src/lcd/tft/canvas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/lcd/tft/canvas.h -------------------------------------------------------------------------------- /Marlin/src/lcd/tft/tft.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/lcd/tft/tft.cpp -------------------------------------------------------------------------------- /Marlin/src/lcd/tft/tft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/lcd/tft/tft.h -------------------------------------------------------------------------------- /Marlin/src/lcd/tft/tft_color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/lcd/tft/tft_color.h -------------------------------------------------------------------------------- /Marlin/src/lcd/tft/tft_image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/lcd/tft/tft_image.cpp -------------------------------------------------------------------------------- /Marlin/src/lcd/tft/tft_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/lcd/tft/tft_image.h -------------------------------------------------------------------------------- /Marlin/src/lcd/tft/tft_queue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/lcd/tft/tft_queue.cpp -------------------------------------------------------------------------------- /Marlin/src/lcd/tft/tft_queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/lcd/tft/tft_queue.h -------------------------------------------------------------------------------- /Marlin/src/lcd/tft/tft_string.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/lcd/tft/tft_string.cpp -------------------------------------------------------------------------------- /Marlin/src/lcd/tft/tft_string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/lcd/tft/tft_string.h -------------------------------------------------------------------------------- /Marlin/src/lcd/tft/touch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/lcd/tft/touch.cpp -------------------------------------------------------------------------------- /Marlin/src/lcd/tft/touch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/lcd/tft/touch.h -------------------------------------------------------------------------------- /Marlin/src/lcd/tft/ui_1024x600.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/lcd/tft/ui_1024x600.cpp -------------------------------------------------------------------------------- /Marlin/src/lcd/tft/ui_1024x600.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/lcd/tft/ui_1024x600.h -------------------------------------------------------------------------------- /Marlin/src/lcd/tft/ui_320x240.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/lcd/tft/ui_320x240.cpp -------------------------------------------------------------------------------- /Marlin/src/lcd/tft/ui_320x240.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/lcd/tft/ui_320x240.h -------------------------------------------------------------------------------- /Marlin/src/lcd/tft/ui_480x320.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/lcd/tft/ui_480x320.cpp -------------------------------------------------------------------------------- /Marlin/src/lcd/tft/ui_480x320.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/lcd/tft/ui_480x320.h -------------------------------------------------------------------------------- /Marlin/src/lcd/tft/ui_common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/lcd/tft/ui_common.cpp -------------------------------------------------------------------------------- /Marlin/src/lcd/tft/ui_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/lcd/tft/ui_common.h -------------------------------------------------------------------------------- /Marlin/src/lcd/tft_io/ili9328.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/lcd/tft_io/ili9328.h -------------------------------------------------------------------------------- /Marlin/src/lcd/tft_io/ili9341.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/lcd/tft_io/ili9341.h -------------------------------------------------------------------------------- /Marlin/src/lcd/tft_io/ili9488.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/lcd/tft_io/ili9488.h -------------------------------------------------------------------------------- /Marlin/src/lcd/tft_io/r65105.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/lcd/tft_io/r65105.h -------------------------------------------------------------------------------- /Marlin/src/lcd/tft_io/ssd1963.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/lcd/tft_io/ssd1963.h -------------------------------------------------------------------------------- /Marlin/src/lcd/tft_io/st7735.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/lcd/tft_io/st7735.h -------------------------------------------------------------------------------- /Marlin/src/lcd/tft_io/st7789v.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/lcd/tft_io/st7789v.h -------------------------------------------------------------------------------- /Marlin/src/lcd/tft_io/st7796s.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/lcd/tft_io/st7796s.h -------------------------------------------------------------------------------- /Marlin/src/lcd/tft_io/tft_ids.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/lcd/tft_io/tft_ids.h -------------------------------------------------------------------------------- /Marlin/src/lcd/tft_io/tft_io.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/lcd/tft_io/tft_io.cpp -------------------------------------------------------------------------------- /Marlin/src/lcd/tft_io/tft_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/lcd/tft_io/tft_io.h -------------------------------------------------------------------------------- /Marlin/src/lcd/thermistornames.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/lcd/thermistornames.h -------------------------------------------------------------------------------- /Marlin/src/lcd/touch/touch_buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/lcd/touch/touch_buttons.h -------------------------------------------------------------------------------- /Marlin/src/lcd/utf8.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/lcd/utf8.cpp -------------------------------------------------------------------------------- /Marlin/src/lcd/utf8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/lcd/utf8.h -------------------------------------------------------------------------------- /Marlin/src/libs/BL24CXX.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/libs/BL24CXX.cpp -------------------------------------------------------------------------------- /Marlin/src/libs/BL24CXX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/libs/BL24CXX.h -------------------------------------------------------------------------------- /Marlin/src/libs/MAX31865.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/libs/MAX31865.cpp -------------------------------------------------------------------------------- /Marlin/src/libs/MAX31865.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/libs/MAX31865.h -------------------------------------------------------------------------------- /Marlin/src/libs/W25Qxx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/libs/W25Qxx.cpp -------------------------------------------------------------------------------- /Marlin/src/libs/W25Qxx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/libs/W25Qxx.h -------------------------------------------------------------------------------- /Marlin/src/libs/autoreport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/libs/autoreport.h -------------------------------------------------------------------------------- /Marlin/src/libs/bresenham.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/libs/bresenham.h -------------------------------------------------------------------------------- /Marlin/src/libs/buzzer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/libs/buzzer.cpp -------------------------------------------------------------------------------- /Marlin/src/libs/buzzer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/libs/buzzer.h -------------------------------------------------------------------------------- /Marlin/src/libs/circularqueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/libs/circularqueue.h -------------------------------------------------------------------------------- /Marlin/src/libs/crc16.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/libs/crc16.cpp -------------------------------------------------------------------------------- /Marlin/src/libs/crc16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/libs/crc16.h -------------------------------------------------------------------------------- /Marlin/src/libs/duration_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/libs/duration_t.h -------------------------------------------------------------------------------- /Marlin/src/libs/heatshrink/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/libs/heatshrink/LICENSE -------------------------------------------------------------------------------- /Marlin/src/libs/hex_print.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/libs/hex_print.cpp -------------------------------------------------------------------------------- /Marlin/src/libs/hex_print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/libs/hex_print.h -------------------------------------------------------------------------------- /Marlin/src/libs/least_squares_fit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/libs/least_squares_fit.h -------------------------------------------------------------------------------- /Marlin/src/libs/nozzle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/libs/nozzle.cpp -------------------------------------------------------------------------------- /Marlin/src/libs/nozzle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/libs/nozzle.h -------------------------------------------------------------------------------- /Marlin/src/libs/numtostr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/libs/numtostr.cpp -------------------------------------------------------------------------------- /Marlin/src/libs/numtostr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/libs/numtostr.h -------------------------------------------------------------------------------- /Marlin/src/libs/private_spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/libs/private_spi.h -------------------------------------------------------------------------------- /Marlin/src/libs/softspi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/libs/softspi.h -------------------------------------------------------------------------------- /Marlin/src/libs/stopwatch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/libs/stopwatch.cpp -------------------------------------------------------------------------------- /Marlin/src/libs/stopwatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/libs/stopwatch.h -------------------------------------------------------------------------------- /Marlin/src/libs/vector_3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/libs/vector_3.cpp -------------------------------------------------------------------------------- /Marlin/src/libs/vector_3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/libs/vector_3.h -------------------------------------------------------------------------------- /Marlin/src/module/delta.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/module/delta.cpp -------------------------------------------------------------------------------- /Marlin/src/module/delta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/module/delta.h -------------------------------------------------------------------------------- /Marlin/src/module/endstops.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/module/endstops.cpp -------------------------------------------------------------------------------- /Marlin/src/module/endstops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/module/endstops.h -------------------------------------------------------------------------------- /Marlin/src/module/motion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/module/motion.cpp -------------------------------------------------------------------------------- /Marlin/src/module/motion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/module/motion.h -------------------------------------------------------------------------------- /Marlin/src/module/planner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/module/planner.cpp -------------------------------------------------------------------------------- /Marlin/src/module/planner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/module/planner.h -------------------------------------------------------------------------------- /Marlin/src/module/planner_bezier.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/module/planner_bezier.cpp -------------------------------------------------------------------------------- /Marlin/src/module/planner_bezier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/module/planner_bezier.h -------------------------------------------------------------------------------- /Marlin/src/module/polargraph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/module/polargraph.cpp -------------------------------------------------------------------------------- /Marlin/src/module/polargraph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/module/polargraph.h -------------------------------------------------------------------------------- /Marlin/src/module/printcounter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/module/printcounter.cpp -------------------------------------------------------------------------------- /Marlin/src/module/printcounter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/module/printcounter.h -------------------------------------------------------------------------------- /Marlin/src/module/probe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/module/probe.cpp -------------------------------------------------------------------------------- /Marlin/src/module/probe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/module/probe.h -------------------------------------------------------------------------------- /Marlin/src/module/scara.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/module/scara.cpp -------------------------------------------------------------------------------- /Marlin/src/module/scara.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/module/scara.h -------------------------------------------------------------------------------- /Marlin/src/module/servo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/module/servo.cpp -------------------------------------------------------------------------------- /Marlin/src/module/servo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/module/servo.h -------------------------------------------------------------------------------- /Marlin/src/module/settings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/module/settings.cpp -------------------------------------------------------------------------------- /Marlin/src/module/settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/module/settings.h -------------------------------------------------------------------------------- /Marlin/src/module/stepper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/module/stepper.cpp -------------------------------------------------------------------------------- /Marlin/src/module/stepper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/module/stepper.h -------------------------------------------------------------------------------- /Marlin/src/module/stepper/TMC26X.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/module/stepper/TMC26X.cpp -------------------------------------------------------------------------------- /Marlin/src/module/stepper/TMC26X.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/module/stepper/TMC26X.h -------------------------------------------------------------------------------- /Marlin/src/module/stepper/trinamic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/module/stepper/trinamic.h -------------------------------------------------------------------------------- /Marlin/src/module/temperature.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/module/temperature.cpp -------------------------------------------------------------------------------- /Marlin/src/module/temperature.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/module/temperature.h -------------------------------------------------------------------------------- /Marlin/src/module/tool_change.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/module/tool_change.cpp -------------------------------------------------------------------------------- /Marlin/src/module/tool_change.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/module/tool_change.h -------------------------------------------------------------------------------- /Marlin/src/pins/esp32/env_validate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/pins/esp32/env_validate.h -------------------------------------------------------------------------------- /Marlin/src/pins/esp32/pins_E4D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/pins/esp32/pins_E4D.h -------------------------------------------------------------------------------- /Marlin/src/pins/esp32/pins_ESP32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/pins/esp32/pins_ESP32.h -------------------------------------------------------------------------------- /Marlin/src/pins/mega/env_validate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/pins/mega/env_validate.h -------------------------------------------------------------------------------- /Marlin/src/pins/mega/pins_ELEFU_3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/pins/mega/pins_ELEFU_3.h -------------------------------------------------------------------------------- /Marlin/src/pins/mega/pins_LEAPFROG.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/pins/mega/pins_LEAPFROG.h -------------------------------------------------------------------------------- /Marlin/src/pins/mega/pins_OVERLORD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/pins/mega/pins_OVERLORD.h -------------------------------------------------------------------------------- /Marlin/src/pins/mega/pins_PICA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/pins/mega/pins_PICA.h -------------------------------------------------------------------------------- /Marlin/src/pins/mega/pins_PICAOLD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/pins/mega/pins_PICAOLD.h -------------------------------------------------------------------------------- /Marlin/src/pins/pins.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/pins/pins.h -------------------------------------------------------------------------------- /Marlin/src/pins/pinsDebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/pins/pinsDebug.h -------------------------------------------------------------------------------- /Marlin/src/pins/pinsDebug_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/pins/pinsDebug_list.h -------------------------------------------------------------------------------- /Marlin/src/pins/pins_postprocess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/pins/pins_postprocess.h -------------------------------------------------------------------------------- /Marlin/src/pins/rambo/env_validate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/pins/rambo/env_validate.h -------------------------------------------------------------------------------- /Marlin/src/pins/rambo/pins_RAMBO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/pins/rambo/pins_RAMBO.h -------------------------------------------------------------------------------- /Marlin/src/pins/ramps/env_validate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/pins/ramps/env_validate.h -------------------------------------------------------------------------------- /Marlin/src/pins/ramps/pins_3DRAG.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/pins/ramps/pins_3DRAG.h -------------------------------------------------------------------------------- /Marlin/src/pins/ramps/pins_FELIX2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/pins/ramps/pins_FELIX2.h -------------------------------------------------------------------------------- /Marlin/src/pins/ramps/pins_K8200.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/pins/ramps/pins_K8200.h -------------------------------------------------------------------------------- /Marlin/src/pins/ramps/pins_K8400.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/pins/ramps/pins_K8400.h -------------------------------------------------------------------------------- /Marlin/src/pins/ramps/pins_K8600.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/pins/ramps/pins_K8600.h -------------------------------------------------------------------------------- /Marlin/src/pins/ramps/pins_K8800.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/pins/ramps/pins_K8800.h -------------------------------------------------------------------------------- /Marlin/src/pins/ramps/pins_ORTUR_4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/pins/ramps/pins_ORTUR_4.h -------------------------------------------------------------------------------- /Marlin/src/pins/ramps/pins_RAMPS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/pins/ramps/pins_RAMPS.h -------------------------------------------------------------------------------- /Marlin/src/pins/ramps/pins_RL200.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/pins/ramps/pins_RL200.h -------------------------------------------------------------------------------- /Marlin/src/pins/ramps/pins_RUMBA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/pins/ramps/pins_RUMBA.h -------------------------------------------------------------------------------- /Marlin/src/pins/ramps/pins_TANGO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/pins/ramps/pins_TANGO.h -------------------------------------------------------------------------------- /Marlin/src/pins/ramps/pins_VORON.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/pins/ramps/pins_VORON.h -------------------------------------------------------------------------------- /Marlin/src/pins/sam/env_validate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/pins/sam/env_validate.h -------------------------------------------------------------------------------- /Marlin/src/pins/sam/pins_ADSK.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/pins/sam/pins_ADSK.h -------------------------------------------------------------------------------- /Marlin/src/pins/sam/pins_ARCHIM1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/pins/sam/pins_ARCHIM1.h -------------------------------------------------------------------------------- /Marlin/src/pins/sam/pins_ARCHIM2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/pins/sam/pins_ARCHIM2.h -------------------------------------------------------------------------------- /Marlin/src/pins/sam/pins_DUE3DOM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/pins/sam/pins_DUE3DOM.h -------------------------------------------------------------------------------- /Marlin/src/pins/sam/pins_KRATOS32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/pins/sam/pins_KRATOS32.h -------------------------------------------------------------------------------- /Marlin/src/pins/sam/pins_RADDS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/pins/sam/pins_RADDS.h -------------------------------------------------------------------------------- /Marlin/src/pins/sam/pins_RAMPS4DUE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/pins/sam/pins_RAMPS4DUE.h -------------------------------------------------------------------------------- /Marlin/src/pins/sam/pins_RAMPS_DUO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/pins/sam/pins_RAMPS_DUO.h -------------------------------------------------------------------------------- /Marlin/src/pins/sanguino/pins_GEN6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/pins/sanguino/pins_GEN6.h -------------------------------------------------------------------------------- /Marlin/src/pins/sanguino/pins_OMCA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/pins/sanguino/pins_OMCA.h -------------------------------------------------------------------------------- /Marlin/src/pins/sensitive_pins.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/pins/sensitive_pins.h -------------------------------------------------------------------------------- /Marlin/src/pins/stm32f1/pins_BEAST.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/pins/stm32f1/pins_BEAST.h -------------------------------------------------------------------------------- /Marlin/src/pins/stm32f4/pins_ARMED.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/pins/stm32f4/pins_ARMED.h -------------------------------------------------------------------------------- /Marlin/src/sd/Sd2Card.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/sd/Sd2Card.cpp -------------------------------------------------------------------------------- /Marlin/src/sd/Sd2Card.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/sd/Sd2Card.h -------------------------------------------------------------------------------- /Marlin/src/sd/Sd2Card_sdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/sd/Sd2Card_sdio.h -------------------------------------------------------------------------------- /Marlin/src/sd/SdBaseFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/sd/SdBaseFile.cpp -------------------------------------------------------------------------------- /Marlin/src/sd/SdBaseFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/sd/SdBaseFile.h -------------------------------------------------------------------------------- /Marlin/src/sd/SdFatConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/sd/SdFatConfig.h -------------------------------------------------------------------------------- /Marlin/src/sd/SdFatStructs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/sd/SdFatStructs.h -------------------------------------------------------------------------------- /Marlin/src/sd/SdFatUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/sd/SdFatUtil.cpp -------------------------------------------------------------------------------- /Marlin/src/sd/SdFatUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/sd/SdFatUtil.h -------------------------------------------------------------------------------- /Marlin/src/sd/SdFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/sd/SdFile.cpp -------------------------------------------------------------------------------- /Marlin/src/sd/SdFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/sd/SdFile.h -------------------------------------------------------------------------------- /Marlin/src/sd/SdInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/sd/SdInfo.h -------------------------------------------------------------------------------- /Marlin/src/sd/SdVolume.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/sd/SdVolume.cpp -------------------------------------------------------------------------------- /Marlin/src/sd/SdVolume.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/sd/SdVolume.h -------------------------------------------------------------------------------- /Marlin/src/sd/cardreader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/sd/cardreader.cpp -------------------------------------------------------------------------------- /Marlin/src/sd/cardreader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/sd/cardreader.h -------------------------------------------------------------------------------- /Marlin/src/sd/disk_io_driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/sd/disk_io_driver.h -------------------------------------------------------------------------------- /Marlin/src/sd/storage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/sd/storage.h -------------------------------------------------------------------------------- /Marlin/src/tests/marlin_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/tests/marlin_tests.cpp -------------------------------------------------------------------------------- /Marlin/src/tests/marlin_tests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/Marlin/src/tests/marlin_tests.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/README.md -------------------------------------------------------------------------------- /config/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/config/README.md -------------------------------------------------------------------------------- /docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/docker/Dockerfile -------------------------------------------------------------------------------- /docs/BinaryFileTransferProtocol.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/docs/BinaryFileTransferProtocol.md -------------------------------------------------------------------------------- /docs/Bresenham.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/docs/Bresenham.md -------------------------------------------------------------------------------- /docs/ConfigEmbedding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/docs/ConfigEmbedding.md -------------------------------------------------------------------------------- /docs/Cutter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/docs/Cutter.md -------------------------------------------------------------------------------- /docs/Queue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/docs/Queue.md -------------------------------------------------------------------------------- /docs/Serial.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/docs/Serial.md -------------------------------------------------------------------------------- /ini/avr.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/ini/avr.ini -------------------------------------------------------------------------------- /ini/due.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/ini/due.ini -------------------------------------------------------------------------------- /ini/esp32.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/ini/esp32.ini -------------------------------------------------------------------------------- /ini/features.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/ini/features.ini -------------------------------------------------------------------------------- /ini/lpc176x.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/ini/lpc176x.ini -------------------------------------------------------------------------------- /ini/native.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/ini/native.ini -------------------------------------------------------------------------------- /ini/renamed.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/ini/renamed.ini -------------------------------------------------------------------------------- /ini/samd21.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/ini/samd21.ini -------------------------------------------------------------------------------- /ini/samd51.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/ini/samd51.ini -------------------------------------------------------------------------------- /ini/stm32-common.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/ini/stm32-common.ini -------------------------------------------------------------------------------- /ini/stm32f0.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/ini/stm32f0.ini -------------------------------------------------------------------------------- /ini/stm32f1-maple.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/ini/stm32f1-maple.ini -------------------------------------------------------------------------------- /ini/stm32f1.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/ini/stm32f1.ini -------------------------------------------------------------------------------- /ini/stm32f4.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/ini/stm32f4.ini -------------------------------------------------------------------------------- /ini/stm32f7.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/ini/stm32f7.ini -------------------------------------------------------------------------------- /ini/stm32g0.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/ini/stm32g0.ini -------------------------------------------------------------------------------- /ini/stm32h7.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/ini/stm32h7.ini -------------------------------------------------------------------------------- /ini/teensy.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/ini/teensy.ini -------------------------------------------------------------------------------- /platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/platformio.ini -------------------------------------------------------------------------------- /process-palette.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hummtaro/Elegoo-Neptune-marlin/HEAD/process-palette.json --------------------------------------------------------------------------------