diff options
Diffstat (limited to 'keyboards/lets_split/serial.c')
| -rw-r--r-- | keyboards/lets_split/serial.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/keyboards/lets_split/serial.c b/keyboards/lets_split/serial.c index f439c2f20..6faed09ce 100644 --- a/keyboards/lets_split/serial.c +++ b/keyboards/lets_split/serial.c | |||
| @@ -10,9 +10,10 @@ | |||
| 10 | #include <avr/interrupt.h> | 10 | #include <avr/interrupt.h> |
| 11 | #include <util/delay.h> | 11 | #include <util/delay.h> |
| 12 | #include <stdbool.h> | 12 | #include <stdbool.h> |
| 13 | |||
| 14 | #include "serial.h" | 13 | #include "serial.h" |
| 15 | 14 | ||
| 15 | #ifdef USE_SERIAL | ||
| 16 | |||
| 16 | // Serial pulse period in microseconds. Its probably a bad idea to lower this | 17 | // Serial pulse period in microseconds. Its probably a bad idea to lower this |
| 17 | // value. | 18 | // value. |
| 18 | #define SERIAL_DELAY 24 | 19 | #define SERIAL_DELAY 24 |
| @@ -223,3 +224,5 @@ int serial_update_buffers(void) { | |||
| 223 | sei(); | 224 | sei(); |
| 224 | return 0; | 225 | return 0; |
| 225 | } | 226 | } |
| 227 | |||
| 228 | #endif | ||
