InsanityAutomation / Marlin

Optimized firmware for RepRap 3D printers based on the Arduino platform.
http://www.marlinfw.org/
GNU General Public License v3.0
448 stars 220 forks source link

CR10SPro / SKRPro11 Dwin 7.43 does not start #233

Closed l0l0l0 closed 3 years ago

l0l0l0 commented 3 years ago

Hello I'm having a hard time figuring out what's wrong and I'm not sure where to look. I compiled with the same options of the 7.4 which works (env: BIGTREE_SKR_PRO / Cr10s pro / Skrpro11 / bltouch / 2209 uart / serial port -1)

When starting the printer, it gets stuck here and cannot be reached with octopi: https://ibb.co/L05G51S

for version 7.4, the printer also remained stuck on the image but we could see the firmware version instead of ??? ... I had to comment "serial_port 2" for it to boot perfectly.

Do you have any idea where I should look?

l0l0l0 commented 3 years ago

Hello, I found. In the stm32F4.ini file I replaced:

[env: BIGTREE_SKR_PRO] platform = $ {common_stm32.platform} extends = stm32_variant board = marlin_BigTree_SKR_Pro board_build.offset = 0x8000 build_flags = $ {stm32_variant.build_flags} -DSTM32F407_5ZX debug_tool = stlink upload_protocol = stlink

By the old version:

[env: BIGTREE_SKR_PRO] platform = $ {common_stm32.platform} extends = common_stm32 board = marlin_BigTree_SKR_Pro build_flags = $ {common_stm32.build_flags} -DSTM32F407_5ZX -DVECT_TAB_OFFSET = 0x8000 extra_scripts = $ {common.extra_scripts} pre: buildroot / share / PlatformIO / scripts / generic_create_variant.py debug_tool = stlink debug_init_break =

and it works again