Skip to content

Commit df62d77

Browse files
committed
Enable M575 and 250000 baud rate on SKR boards
1 parent e14bf8a commit df62d77

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed

Marlin/Configuration.h

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -146,8 +146,15 @@
146146
*
147147
* :[2400, 9600, 19200, 38400, 57600, 115200, 250000, 500000, 1000000]
148148
*/
149-
#define BAUDRATE 250000
150-
//#define BAUD_RATE_GCODE // Enable G-code M575 to set the baud rate
149+
#if ANY(KAD_SKR_MINI, KAD_SKR_E3_TURBO)
150+
#define BAUDRATE 250000
151+
// KAD: M575 not yet available on LPC
152+
#if ENABLED(KAD_SKR_MINI)
153+
#define BAUD_RATE_GCODE // Enable G-code M575 to set the baud rate
154+
#endif
155+
#else
156+
#define BAUDRATE 115200
157+
#endif
151158

152159
/**
153160
* Select a secondary serial port on the board to use for communication with the host.

0 commit comments

Comments
 (0)