diff options
| author | Hannes Egler <hannes.egler@gmail.com> | 2018-07-15 20:21:26 +0200 |
|---|---|---|
| committer | Drashna Jaelre <drashna@live.com> | 2018-07-15 11:21:26 -0700 |
| commit | 6bdef6b8c21f7a5144d5387e91c970fc038f319b (patch) | |
| tree | a44c7be08ba9436ff841e5f0b7ef03ec2ce806aa | |
| parent | b292d30a257de4cc1844621c008ac30a0d1391c5 (diff) | |
| download | qmk_firmware-6bdef6b8c21f7a5144d5387e91c970fc038f319b.tar.gz qmk_firmware-6bdef6b8c21f7a5144d5387e91c970fc038f319b.zip | |
Fixed kbd8x compile issues (#3409)
Fixed compile errors on some machines
| -rw-r--r-- | keyboards/kbd8x/kbd8x.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/keyboards/kbd8x/kbd8x.c b/keyboards/kbd8x/kbd8x.c index af7ab7a07..97c2e74e3 100644 --- a/keyboards/kbd8x/kbd8x.c +++ b/keyboards/kbd8x/kbd8x.c | |||
| @@ -13,8 +13,16 @@ | |||
| 13 | * You should have received a copy of the GNU General Public License | 13 | * You should have received a copy of the GNU General Public License |
| 14 | * along with this program. If not, see <http://www.gnu.org/licenses/>. | 14 | * along with this program. If not, see <http://www.gnu.org/licenses/>. |
| 15 | */ | 15 | */ |
| 16 | |||
| 16 | #include "kbd8x.h" | 17 | #include "kbd8x.h" |
| 17 | 18 | ||
| 19 | extern inline void caps_led_off(void); | ||
| 20 | extern inline void caps_led_on(void); | ||
| 21 | extern inline void num_led_off(void); | ||
| 22 | extern inline void num_led_on(void); | ||
| 23 | extern inline void scroll_led_off(void); | ||
| 24 | extern inline void scroll_led_on(void); | ||
| 25 | |||
| 18 | void matrix_init_kb(void) { | 26 | void matrix_init_kb(void) { |
| 19 | // put your keyboard start-up code here | 27 | // put your keyboard start-up code here |
| 20 | // runs once when the firmware starts up | 28 | // runs once when the firmware starts up |
