We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 0236c0d + 6ba7274 commit 107db11Copy full SHA for 107db11
config.h
@@ -38,8 +38,16 @@
38
// Default settings. Used when resetting EEPROM. Change to desired name in defaults.h
39
#define DEFAULTS_HORUS
40
41
+// This enables the serial port associated to the Bluetooth interface
42
+//#define BTENABLED // Enable BT interface
43
+
44
// Serial baud rate
-#define BAUD_RATE 115200
45
+#ifndef BTENABLED
46
+#define BAUD_RATE 115200 // Default baud rate
47
+#else
48
+#define BAUD_RATE 19200 // Bluetooth baudrate
49
+#endif
50
51
52
// Default cpu mappings. Grbl officially supports the Arduino Uno only. Other processor types
53
// may exist from user-supplied templates or directly user-defined in cpu_map.h
0 commit comments