You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I installed the new BigTreeTech SKR mini E3 V3.0 (STM32G0B1RET6) onto my Ender 3 V2. This board was added in the 2.0.9.3 release. #23283
I modified the ribbon cable to be able to use the stock DWIN LCD, and also changed the relevant pins in pins_BTT_SKR_MINI_E3_V3_0.h.
I still was unable to get the LCD to display anything. I figured it had something to do with a SERIAL_PORT being set wrong, but it took me a while to find the actual cause was just that this board was never added to line 512 of Conditionals_LCD.h, which defines the LCD_SERIAL_PORT.
For me, adding the "BTT_SKR_MINI_E3_V3_0" to line 512 did not do the trick: still exiting with a compiler error.
I commented out the "#define SERIAL_CATCHALL 0" by trial-and-error (after everything else had no success). That worked. Now, the FW compiles and my stock display is running.
Config is Ender 3 V2 together with SKR MINI E3 V3.0.
(Thanks to you guys for pointing me in the right direction.)
Hey @bertos03, the issue you're describing is actually a separate problem caused when defining multiple serial ports. I linked to it at the very end of the original post because it happened to involve the same area of code as this one: #22299
I ran into the same problem and happened to find the solution you stumbled upon in the comments of that other issue.
Did you test the latest
bugfix-2.0.x
code?Yes, and the problem still exists.
Bug Description
I installed the new BigTreeTech SKR mini E3 V3.0 (
STM32G0B1RET6
) onto my Ender 3 V2. This board was added in the 2.0.9.3 release. #23283I modified the ribbon cable to be able to use the stock DWIN LCD, and also changed the relevant pins in
pins_BTT_SKR_MINI_E3_V3_0.h
.I still was unable to get the LCD to display anything. I figured it had something to do with a
SERIAL_PORT
being set wrong, but it took me a while to find the actual cause was just that this board was never added to line 512 ofConditionals_LCD.h
, which defines theLCD_SERIAL_PORT
.https://github.com/MarlinFirmware/Marlin/blob/bugfix-2.0.x/Marlin/src/inc/Conditionals_LCD.h#L512
So, in summary, line 512 of
Conditionals_LCD.h
is currently:#if MB(BTT_SKR_MINI_E3_V1_0, BTT_SKR_MINI_E3_V1_2, BTT_SKR_MINI_E3_V2_0, BTT_SKR_E3_TURBO)
but should be:
#if MB(BTT_SKR_MINI_E3_V1_0, BTT_SKR_MINI_E3_V1_2, BTT_SKR_MINI_E3_V2_0, BTT_SKR_MINI_E3_V3_0, BTT_SKR_E3_TURBO)
To note, this is the same area of code relevant to this bug which I also ran into: #22299
Bug Timeline
No response
Expected behavior
No response
Actual behavior
No response
Steps to Reproduce
No response
Version of Marlin Firmware
bugfix-2.0.x
Printer model
Creality Ender 3 V2
Electronics
BigTreeTech SKR mini E3 V3.0
Add-ons
No response
Bed Leveling
No response
Your Slicer
No response
Host Software
No response
Additional information & file uploads
No response
The text was updated successfully, but these errors were encountered: