Skip to content

Commit

Permalink
Fix Split keyboards so they compile on Configurator (qmk#3051)
Browse files Browse the repository at this point in the history
* 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 72538df.

We'll let the helix owner fix this issue, or dive into the code later
  • Loading branch information
drashna authored and carlpehrson committed May 30, 2018
1 parent d62e19e commit 610b1ff
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion keyboards/bfo9000/serial.c
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion keyboards/deltasplit75/serial.c
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion keyboards/minidox/serial.c
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion keyboards/viterbi/serial.c
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit 610b1ff

Please sign in to comment.