Skip to content

Commit

Permalink
Tidy up backlight header use to avoid build issues (qmk#6714)
Browse files Browse the repository at this point in the history
  • Loading branch information
zvecr committed Sep 11, 2019
1 parent 251b4fb commit ad3e4d6
Show file tree
Hide file tree
Showing 9 changed files with 0 additions and 30 deletions.
3 changes: 0 additions & 3 deletions keyboards/chimera_ergo/chimera_ergo.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,6 @@
#define CHIMERA_ERGO_H

#include "quantum.h"
#include "matrix.h"
#include "backlight.h"
#include <stddef.h>

#define red_led_off PORTF |= (1<<5)
#define red_led_on PORTF &= ~(1<<5)
Expand Down
3 changes: 0 additions & 3 deletions keyboards/chimera_ls/chimera_ls.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,6 @@
#define CHIMERA_LETS_SPLIT_H

#include "quantum.h"
#include "matrix.h"
#include "backlight.h"
#include <stddef.h>

#define red_led_off PORTF |= (1<<5)
#define red_led_on PORTF &= ~(1<<5)
Expand Down
3 changes: 0 additions & 3 deletions keyboards/chimera_ortho/chimera_ortho.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,6 @@
#define CHIMERA_ORTHO_H

#include "quantum.h"
#include "matrix.h"
#include "backlight.h"
#include <stddef.h>

#define red_led_off PORTF |= (1<<5)
#define red_led_on PORTF &= ~(1<<5)
Expand Down
3 changes: 0 additions & 3 deletions keyboards/comet46/comet46.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,6 @@
#define COMET46_H

#include "quantum.h"
#include "matrix.h"
#include "backlight.h"
#include <stddef.h>

// This a shortcut to help you visually see your layout.
// The first section contains all of the arguements
Expand Down
4 changes: 0 additions & 4 deletions keyboards/dichotomy/dichotomy.h
Original file line number Diff line number Diff line change
@@ -1,13 +1,9 @@
#ifndef DICHOTOMY_H
#define DICHOTOMY_H

#include QMK_KEYBOARD_H
#include "report.h"
#include "pointing_device.h"
#include "quantum.h"
#include "matrix.h"
#include "backlight.h"
#include <stddef.h>

#define red_led_off() PORTF |= (1<<6)
#define red_led_on() PORTF &= ~(1<<6)
Expand Down
5 changes: 0 additions & 5 deletions keyboards/honeycomb/honeycomb.h
Original file line number Diff line number Diff line change
@@ -1,11 +1,6 @@
#pragma once

#define HONEYCOMB_H

#include "quantum.h"
#include "matrix.h"
#include "backlight.h"
#include <stddef.h>

#define RED_LED_OFF() writePinHigh(F6)
#define RED_LED_ON() writePinLow(F6)
Expand Down
3 changes: 0 additions & 3 deletions keyboards/mitosis/mitosis.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,6 @@
#define MITOSIS_H

#include "quantum.h"
#include "matrix.h"
#include "backlight.h"
#include <stddef.h>

#define red_led_off PORTF |= (1<<5)
#define red_led_on PORTF &= ~(1<<5)
Expand Down
3 changes: 0 additions & 3 deletions keyboards/redox_w/redox_w.h
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
#pragma once

#include "quantum.h"
#include "matrix.h"
#include "backlight.h"
#include <stddef.h>

#define red_led_off PORTF |= (1<<5)
#define red_led_on PORTF &= ~(1<<5)
Expand Down
3 changes: 0 additions & 3 deletions keyboards/telophase/telophase.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,6 @@
#define TELOPHASE_H

#include "quantum.h"
#include "matrix.h"
#include "backlight.h"
#include <stddef.h>

#define red_led_off PORTF |= (1<<5)
#define red_led_on PORTF &= ~(1<<5)
Expand Down

0 comments on commit ad3e4d6

Please sign in to comment.