Releases: smokeypell/Smokey-s_Aquila_C2_H32_Firmware
C2 H32 v1.2.0 (Marlin 2.0.8)
Dialing in Acceleration and Jerk settings.
Calibrated extruder and updated steps per mm from 93 to 95.
C2 H32 v1.1.0 (Marlin 2.0.8)
Note: Includes added features from v1.0.0.
Refer to v1.0.0 release notes. https://github.com/smokeypell/Smokey-s_Aquila_C2_H32_Firmware/releases/tag/1.0.0
v1.1.0 Fixes
Fixed issue where status logo said Aquila X1.
Manual mesh bed leveling now probes 25 different points on the bed to ensure accurate bed mesh.
Added option in LCD menu to disable beeper.
Attempted to document code to clearly define what was changed by Voxelab.
C2 H32 v1.0.0 (Marlin 2.0.8)
Firmware was compiled with Keil MDK using the source code provided by Voxelab.
Voxelab C2 GitHub
Changes made
Acceleration and Jerk settings
Adjusted to help with skipped steps using default settings.
#define DEFAULT_MAX_FEEDRATE { 300, 300, 5, 25 }
#define DEFAULT_MAX_ACCELERATION { 1500, 1000, 50, 3000 }
#define DEFAULT_ACCELERATION 800
#define DEFAULT_RETRACT_ACCELERATION 1000
#define DEFAULT_TRAVEL_ACCELERATION 1000
#define DEFAULT_XJERK 7.0
#define DEFAULT_YJERK 7.0
#define DEFAULT_ZJERK 0.3
#define DEFAULT_EJERK 5.0
S-Curve Acceleration enabled
This option eliminates vibration during printing by fitting a Bezier
curve to move acceleration, producing much smoother direction changes.
See https://github.com/synthetos/TinyG/wiki/Jerk-Controlled-Motion-Explained
Manual Probing enabled
The "Manual Probe" provides a means to do "Auto" Bed Leveling without a probe.
Use G29 repeatedly, adjusting the Z height at each point with movement commands
or (with LCD_BED_LEVELING) the LCD controller.
Mesh Bed Leveling enabled
Probe a grid manually
The result is a mesh, suitable for large or uneven beds. (See BILINEAR.)
For machines without a probe, Mesh Bed Leveling provides a method to perform
leveling in steps so you can manually adjust the Z height at each grid-point.
With an LCD controller the process is guided step-by-step.
LCD Bed Leveling enabled
Adds a bed leveling sub-menu for ABL or MBL.
Includes a guided procedure if manual probing is enabled.
Additional Preheat Profiles added
#define PREHEAT_1_LABEL "Warm Up"
#define PREHEAT_1_TEMP_HOTEND 200
#define PREHEAT_1_TEMP_BED 60
#define PREHEAT_1_FAN_SPEED 0 // Value from 0 to 255
#define PREHEAT_2_LABEL "PLA"
#define PREHEAT_2_TEMP_HOTEND 205
#define PREHEAT_2_TEMP_BED 60
#define PREHEAT_2_FAN_SPEED 0 // Value from 0 to 255
#define PREHEAT_3_LABEL "PLA+"
#define PREHEAT_3_TEMP_HOTEND 220
#define PREHEAT_3_TEMP_BED 60
#define PREHEAT_3_FAN_SPEED 0 // Value from 0 to 255
#define PREHEAT_4_LABEL "PETG"
#define PREHEAT_4_TEMP_HOTEND 235
#define PREHEAT_4_TEMP_BED 60
#define PREHEAT_4_FAN_SPEED 0 // Value from 0 to 255
#define PREHEAT_5_LABEL "ABS"
#define PREHEAT_5_TEMP_HOTEND 235
#define PREHEAT_5_TEMP_BED 110
#define PREHEAT_5_FAN_SPEED 0 // Value from 0 to 255
Scroll Long Filenames in SD card menu
#define SCROLL_LONG_FILENAMES
SD Card Alphabetical Sorting
Sort SD file listings in alphabetical order.
#define SDCARD_SORT_ALPHA