Skip to content

Commit 107db11

Browse files
committed
Merge pull request #2 from MacarenaGB/develop
Horus via Bluetooth
2 parents 0236c0d + 6ba7274 commit 107db11

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

config.h

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,16 @@
3838
// Default settings. Used when resetting EEPROM. Change to desired name in defaults.h
3939
#define DEFAULTS_HORUS
4040

41+
// This enables the serial port associated to the Bluetooth interface
42+
//#define BTENABLED // Enable BT interface
43+
4144
// Serial baud rate
42-
#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+
4351

4452
// Default cpu mappings. Grbl officially supports the Arduino Uno only. Other processor types
4553
// may exist from user-supplied templates or directly user-defined in cpu_map.h

0 commit comments

Comments
 (0)