From 6ba7274b754bc42838bbdefed8369f6a660ec607 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Macarena=20Gonz=C3=A1lez?= Date: Wed, 3 Jun 2015 09:29:35 +0200 Subject: [PATCH] Horus via Bluetooth Modify the baud rate in order to use the Bluetooth --- config.h | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/config.h b/config.h index 6fa9e88f6..59f76a98f 100644 --- a/config.h +++ b/config.h @@ -38,8 +38,16 @@ // Default settings. Used when resetting EEPROM. Change to desired name in defaults.h #define DEFAULTS_HORUS +// This enables the serial port associated to the Bluetooth interface +//#define BTENABLED // Enable BT interface + // Serial baud rate -#define BAUD_RATE 115200 +#ifndef BTENABLED +#define BAUD_RATE 115200 // Default baud rate +#elif +#define BAUD_RATE 19200 // Bluetooth baudrate +#endif + // Default cpu mappings. Grbl officially supports the Arduino Uno only. Other processor types // may exist from user-supplied templates or directly user-defined in cpu_map.h