Custom Ender 3 Pro Firmware Marlin Bugfix 2.1.X
I recently upgraded the Ender 3 Pro printer I have with a Creality Sprite Extruder Pro. I had to make a lot of changes to the firmware and compile it myself to get it all working correctly, so I thought I would share it with the world since not a lot of people had everything I needed in one place.
You can find the repo with the firmware Here
Please note this is a custom Marlin firewamre (Bugfix 2.1.x) that I made for my printer with parts listed below.
I have also included a precompiled version of the firmware based on Marlin Bugfix 2.1.X. Your milage may vary, install at your own risk. If you choose to use this firmware I am not responsible for anything that happens.
I had to make edit to the pins_BTT_SKR_MINI_E3_V3_0.h file in order to get the fans and BLTouch probe working as intended. I will outline all my changes below
Printer Setup
- Ender 3 Pro
- Big Tree Tech SKR Mini e3 v3.0 Control Board
- Creality Sprite Extruder Pro
- BLTouch
Congifuration Edits
Configuration.h
1 | - #define BAUDRATE 250000 |
Configuration_adv.h
1 | - #define CONTROLLER_FAN_PIN FAN2_PIN |
pins_BTT_SKR_MINI_E3_V3_0.h
I had to change the Z_STOP_PIN since I don’t have a physical Z-Stop anymore. I would run into a weird error where when the printer wanted to home itself X and Y worked, and the Probe on the BLTouch would Extend and Retract a few times before the printer just said STOPPED
1 | - #define Z_STOP_PIN PC14 // Z-STOP |
Fan Layout
- Fan under the printer on the SKR Mini - FAN1 (PC7)
- Fan on the Sprite Pro - FAN2 (PB15)
- Parts Cooling Fan - FAN0 (PC6)