diff options
| author | Joel Challis <git@zvecr.com> | 2019-09-11 23:15:39 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-09-11 23:15:39 +0100 |
| commit | ad3e4d6c132ae3e0662972488685517c0cfde153 (patch) | |
| tree | 284ffe706caab67bafd232188725ca64190ecddd /keyboards | |
| parent | 251b4fb79d558f550a481cad448000c1622d58f9 (diff) | |
| download | qmk_firmware-ad3e4d6c132ae3e0662972488685517c0cfde153.tar.gz qmk_firmware-ad3e4d6c132ae3e0662972488685517c0cfde153.zip | |
Tidy up backlight header use to avoid build issues (#6714)
Diffstat (limited to 'keyboards')
| -rw-r--r-- | keyboards/chimera_ergo/chimera_ergo.h | 3 | ||||
| -rw-r--r-- | keyboards/chimera_ls/chimera_ls.h | 3 | ||||
| -rw-r--r-- | keyboards/chimera_ortho/chimera_ortho.h | 3 | ||||
| -rw-r--r-- | keyboards/comet46/comet46.h | 3 | ||||
| -rwxr-xr-x | keyboards/dichotomy/dichotomy.h | 4 | ||||
| -rwxr-xr-x | keyboards/honeycomb/honeycomb.h | 5 | ||||
| -rw-r--r-- | keyboards/mitosis/mitosis.h | 3 | ||||
| -rw-r--r-- | keyboards/redox_w/redox_w.h | 3 | ||||
| -rw-r--r-- | keyboards/telophase/telophase.h | 3 |
9 files changed, 0 insertions, 30 deletions
diff --git a/keyboards/chimera_ergo/chimera_ergo.h b/keyboards/chimera_ergo/chimera_ergo.h index a9275e3a8..78e5c0dac 100644 --- a/keyboards/chimera_ergo/chimera_ergo.h +++ b/keyboards/chimera_ergo/chimera_ergo.h | |||
| @@ -2,9 +2,6 @@ | |||
| 2 | #define CHIMERA_ERGO_H | 2 | #define CHIMERA_ERGO_H |
| 3 | 3 | ||
| 4 | #include "quantum.h" | 4 | #include "quantum.h" |
| 5 | #include "matrix.h" | ||
| 6 | #include "backlight.h" | ||
| 7 | #include <stddef.h> | ||
| 8 | 5 | ||
| 9 | #define red_led_off PORTF |= (1<<5) | 6 | #define red_led_off PORTF |= (1<<5) |
| 10 | #define red_led_on PORTF &= ~(1<<5) | 7 | #define red_led_on PORTF &= ~(1<<5) |
diff --git a/keyboards/chimera_ls/chimera_ls.h b/keyboards/chimera_ls/chimera_ls.h index bb99684e5..8ca8534eb 100644 --- a/keyboards/chimera_ls/chimera_ls.h +++ b/keyboards/chimera_ls/chimera_ls.h | |||
| @@ -2,9 +2,6 @@ | |||
| 2 | #define CHIMERA_LETS_SPLIT_H | 2 | #define CHIMERA_LETS_SPLIT_H |
| 3 | 3 | ||
| 4 | #include "quantum.h" | 4 | #include "quantum.h" |
| 5 | #include "matrix.h" | ||
| 6 | #include "backlight.h" | ||
| 7 | #include <stddef.h> | ||
| 8 | 5 | ||
| 9 | #define red_led_off PORTF |= (1<<5) | 6 | #define red_led_off PORTF |= (1<<5) |
| 10 | #define red_led_on PORTF &= ~(1<<5) | 7 | #define red_led_on PORTF &= ~(1<<5) |
diff --git a/keyboards/chimera_ortho/chimera_ortho.h b/keyboards/chimera_ortho/chimera_ortho.h index 598125275..fc2eba86b 100644 --- a/keyboards/chimera_ortho/chimera_ortho.h +++ b/keyboards/chimera_ortho/chimera_ortho.h | |||
| @@ -2,9 +2,6 @@ | |||
| 2 | #define CHIMERA_ORTHO_H | 2 | #define CHIMERA_ORTHO_H |
| 3 | 3 | ||
| 4 | #include "quantum.h" | 4 | #include "quantum.h" |
| 5 | #include "matrix.h" | ||
| 6 | #include "backlight.h" | ||
| 7 | #include <stddef.h> | ||
| 8 | 5 | ||
| 9 | #define red_led_off PORTF |= (1<<5) | 6 | #define red_led_off PORTF |= (1<<5) |
| 10 | #define red_led_on PORTF &= ~(1<<5) | 7 | #define red_led_on PORTF &= ~(1<<5) |
diff --git a/keyboards/comet46/comet46.h b/keyboards/comet46/comet46.h index 07dad0a00..b6598f017 100644 --- a/keyboards/comet46/comet46.h +++ b/keyboards/comet46/comet46.h | |||
| @@ -2,9 +2,6 @@ | |||
| 2 | #define COMET46_H | 2 | #define COMET46_H |
| 3 | 3 | ||
| 4 | #include "quantum.h" | 4 | #include "quantum.h" |
| 5 | #include "matrix.h" | ||
| 6 | #include "backlight.h" | ||
| 7 | #include <stddef.h> | ||
| 8 | 5 | ||
| 9 | // This a shortcut to help you visually see your layout. | 6 | // This a shortcut to help you visually see your layout. |
| 10 | // The first section contains all of the arguements | 7 | // The first section contains all of the arguements |
diff --git a/keyboards/dichotomy/dichotomy.h b/keyboards/dichotomy/dichotomy.h index 030209ff0..4355a1c90 100755 --- a/keyboards/dichotomy/dichotomy.h +++ b/keyboards/dichotomy/dichotomy.h | |||
| @@ -1,13 +1,9 @@ | |||
| 1 | #ifndef DICHOTOMY_H | 1 | #ifndef DICHOTOMY_H |
| 2 | #define DICHOTOMY_H | 2 | #define DICHOTOMY_H |
| 3 | 3 | ||
| 4 | #include QMK_KEYBOARD_H | ||
| 5 | #include "report.h" | 4 | #include "report.h" |
| 6 | #include "pointing_device.h" | 5 | #include "pointing_device.h" |
| 7 | #include "quantum.h" | 6 | #include "quantum.h" |
| 8 | #include "matrix.h" | ||
| 9 | #include "backlight.h" | ||
| 10 | #include <stddef.h> | ||
| 11 | 7 | ||
| 12 | #define red_led_off() PORTF |= (1<<6) | 8 | #define red_led_off() PORTF |= (1<<6) |
| 13 | #define red_led_on() PORTF &= ~(1<<6) | 9 | #define red_led_on() PORTF &= ~(1<<6) |
diff --git a/keyboards/honeycomb/honeycomb.h b/keyboards/honeycomb/honeycomb.h index 9374a02c5..ec54b59f2 100755 --- a/keyboards/honeycomb/honeycomb.h +++ b/keyboards/honeycomb/honeycomb.h | |||
| @@ -1,11 +1,6 @@ | |||
| 1 | #pragma once | 1 | #pragma once |
| 2 | 2 | ||
| 3 | #define HONEYCOMB_H | ||
| 4 | |||
| 5 | #include "quantum.h" | 3 | #include "quantum.h" |
| 6 | #include "matrix.h" | ||
| 7 | #include "backlight.h" | ||
| 8 | #include <stddef.h> | ||
| 9 | 4 | ||
| 10 | #define RED_LED_OFF() writePinHigh(F6) | 5 | #define RED_LED_OFF() writePinHigh(F6) |
| 11 | #define RED_LED_ON() writePinLow(F6) | 6 | #define RED_LED_ON() writePinLow(F6) |
diff --git a/keyboards/mitosis/mitosis.h b/keyboards/mitosis/mitosis.h index 4b73f0407..80476e71c 100644 --- a/keyboards/mitosis/mitosis.h +++ b/keyboards/mitosis/mitosis.h | |||
| @@ -2,9 +2,6 @@ | |||
| 2 | #define MITOSIS_H | 2 | #define MITOSIS_H |
| 3 | 3 | ||
| 4 | #include "quantum.h" | 4 | #include "quantum.h" |
| 5 | #include "matrix.h" | ||
| 6 | #include "backlight.h" | ||
| 7 | #include <stddef.h> | ||
| 8 | 5 | ||
| 9 | #define red_led_off PORTF |= (1<<5) | 6 | #define red_led_off PORTF |= (1<<5) |
| 10 | #define red_led_on PORTF &= ~(1<<5) | 7 | #define red_led_on PORTF &= ~(1<<5) |
diff --git a/keyboards/redox_w/redox_w.h b/keyboards/redox_w/redox_w.h index 3adcb121d..727c3050d 100644 --- a/keyboards/redox_w/redox_w.h +++ b/keyboards/redox_w/redox_w.h | |||
| @@ -1,9 +1,6 @@ | |||
| 1 | #pragma once | 1 | #pragma once |
| 2 | 2 | ||
| 3 | #include "quantum.h" | 3 | #include "quantum.h" |
| 4 | #include "matrix.h" | ||
| 5 | #include "backlight.h" | ||
| 6 | #include <stddef.h> | ||
| 7 | 4 | ||
| 8 | #define red_led_off PORTF |= (1<<5) | 5 | #define red_led_off PORTF |= (1<<5) |
| 9 | #define red_led_on PORTF &= ~(1<<5) | 6 | #define red_led_on PORTF &= ~(1<<5) |
diff --git a/keyboards/telophase/telophase.h b/keyboards/telophase/telophase.h index aae4fc3d4..a7102498c 100644 --- a/keyboards/telophase/telophase.h +++ b/keyboards/telophase/telophase.h | |||
| @@ -2,9 +2,6 @@ | |||
| 2 | #define TELOPHASE_H | 2 | #define TELOPHASE_H |
| 3 | 3 | ||
| 4 | #include "quantum.h" | 4 | #include "quantum.h" |
| 5 | #include "matrix.h" | ||
| 6 | #include "backlight.h" | ||
| 7 | #include <stddef.h> | ||
| 8 | 5 | ||
| 9 | #define red_led_off PORTF |= (1<<5) | 6 | #define red_led_off PORTF |= (1<<5) |
| 10 | #define red_led_on PORTF &= ~(1<<5) | 7 | #define red_led_on PORTF &= ~(1<<5) |
