Skip to content

Commit

Permalink
Enable M575 and 250000 baud rate on SKR boards
Browse files Browse the repository at this point in the history
  • Loading branch information
kad committed Jun 1, 2021
1 parent e14bf8a commit df62d77
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions Marlin/Configuration.h
Original file line number Diff line number Diff line change
Expand Up @@ -146,8 +146,15 @@
*
* :[2400, 9600, 19200, 38400, 57600, 115200, 250000, 500000, 1000000]
*/
#define BAUDRATE 250000
//#define BAUD_RATE_GCODE // Enable G-code M575 to set the baud rate
#if ANY(KAD_SKR_MINI, KAD_SKR_E3_TURBO)
#define BAUDRATE 250000
// KAD: M575 not yet available on LPC
#if ENABLED(KAD_SKR_MINI)
#define BAUD_RATE_GCODE // Enable G-code M575 to set the baud rate
#endif
#else
#define BAUDRATE 115200
#endif

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

0 comments on commit df62d77

Please sign in to comment.