Browse Source

Fix Split keyboards so they compile on Configurator (#3051)

* Fix serial split for BFO9000

* Fix serial split for DeltaSplit75

* Fix serial split for Helix

* Fix serial split for MiniDox

* Fix serial split for Viterbi

* Revert "Fix serial split for Helix" since it's super complex

This reverts commit 72538df105.

We'll let the helix owner fix this issue, or dive into the code later
pull/3053/head
Drashna Jaelre 6 years ago
committed by skullydazed
parent
commit
24b8d84b6c
4 changed files with 4 additions and 4 deletions
  1. +1
    -1
      keyboards/bfo9000/serial.c
  2. +1
    -1
      keyboards/deltasplit75/serial.c
  3. +1
    -1
      keyboards/minidox/serial.c
  4. +1
    -1
      keyboards/viterbi/serial.c

+ 1
- 1
keyboards/bfo9000/serial.c View File

@ -12,7 +12,7 @@
#include <stdbool.h>
#include "serial.h"
#ifdef USE_SERIAL
#ifndef USE_I2C
// Serial pulse period in microseconds. Its probably a bad idea to lower this
// value.


+ 1
- 1
keyboards/deltasplit75/serial.c View File

@ -12,7 +12,7 @@
#include <stdbool.h>
#include "serial.h"
#ifdef USE_SERIAL
#ifndef USE_I2C
// Serial pulse period in microseconds. Its probably a bad idea to lower this
// value.


+ 1
- 1
keyboards/minidox/serial.c View File

@ -12,7 +12,7 @@
#include <stdbool.h>
#include "serial.h"
#ifdef USE_SERIAL
#ifndef USE_I2C
// Serial pulse period in microseconds. Its probably a bad idea to lower this
// value.


+ 1
- 1
keyboards/viterbi/serial.c View File

@ -12,7 +12,7 @@
#include <stdbool.h>
#include "serial.h"
#ifdef USE_SERIAL
#ifndef USE_I2C
// Serial pulse period in microseconds. Its probably a bad idea to lower this
// value.


Loading…
Cancel
Save