|
PCB Creality 4.2.2 (STM32F103RET6) and Marlin FW relations April 13, 2023 04:08PM |
Registered: 3 years ago Posts: 6 |
|
Re: PCB Creality 4.2.2 (STM32F103RET6) and Marlin FW relations April 13, 2023 09:31PM |
Admin Registered: 15 years ago Posts: 7,317 |
|
Re: PCB Creality 4.2.2 (STM32F103RET6) and Marlin FW relations April 14, 2023 10:44AM |
Registered: 3 years ago Posts: 6 |
|
Re: PCB Creality 4.2.2 (STM32F103RET6) and Marlin FW relations April 14, 2023 12:04PM |
Admin Registered: 15 years ago Posts: 7,317 |
#elif MB(CREALITY_V4) #include "stm32f1/pins_CREALITY_V4.h" // STM32F1 env: STM32F103RE_creality env: STM32F103RE_creality_xfer env: STM32F103RC_creality env: STM32F103RC_creality_xfer env: STM32F103RE_creality_maple
# # Creality (STM32F103Rx) # [STM32F103Rx_creality] extends = stm32_variant board_build.variant = MARLIN_F103Rx board_build.offset = 0x7000 board_upload.offset_address = 0x08007000
|
Re: PCB Creality 4.2.2 (STM32F103RET6) and Marlin FW relations September 26, 2025 02:17PM |
Registered: 7 months ago Posts: 1 |
|
Re: PCB Creality 4.2.2 (STM32F103RET6) and Marlin FW relations November 21, 2025 03:33PM |
Registered: 5 months ago Posts: 3 |
.Quote
SuperCow
Thanks for the bootloader, ive search long time for this.
Few years ago i bricked mine, i got it working again without bootloader. (but every firmware update i had to use st-link)
Now i can use the sdcard again for new firmware.
|
Re: PCB Creality 4.2.2 (STM32F103RET6) and Marlin FW relations November 21, 2025 08:14PM |
Admin Registered: 15 years ago Posts: 7,317 |
|
Re: PCB Creality 4.2.2 (STM32F103RET6) and Marlin FW relations November 21, 2025 08:19PM |
Admin Registered: 15 years ago Posts: 7,317 |
|
Re: PCB Creality 4.2.2 (STM32F103RET6) and Marlin FW relations November 22, 2025 03:02AM |
Registered: 5 months ago Posts: 3 |
Quote
Dust
For no bootloader operation you have to edit the build environment settings
eg
board_build.offset = 0x7000
board_upload.offset_address = 0x08007000
Says the firmware should start at 0x08007000, but without a bootloader it will never start since code starts at 0x08000000
So change to
board_build.offset = 0x0000
board_upload.offset_address = 0x08000000
But I recommend restoring the bootloader with the one provided above.
|
Re: PCB Creality 4.2.2 (STM32F103RET6) and Marlin FW relations November 22, 2025 02:52PM |
Registered: 5 months ago Posts: 3 |
Quote
Dust
For no bootloader operation you have to edit the build environment settings
eg
board_build.offset = 0x7000
board_upload.offset_address = 0x08007000
Says the firmware should start at 0x08007000, but without a bootloader it will never start since code starts at 0x08000000
So change to
board_build.offset = 0x0000
board_upload.offset_address = 0x08000000
But I recommend restoring the bootloader with the one provided above.