~ruther/qmk_firmware

ad3e4d6c132ae3e0662972488685517c0cfde153 — Joel Challis 6 years ago 251b4fb
Tidy up backlight header use to avoid build issues (#6714)

M keyboards/chimera_ergo/chimera_ergo.h => keyboards/chimera_ergo/chimera_ergo.h +0 -3
@@ 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)

M keyboards/chimera_ls/chimera_ls.h => keyboards/chimera_ls/chimera_ls.h +0 -3
@@ 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)

M keyboards/chimera_ortho/chimera_ortho.h => keyboards/chimera_ortho/chimera_ortho.h +0 -3
@@ 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)

M keyboards/comet46/comet46.h => keyboards/comet46/comet46.h +0 -3
@@ 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

M keyboards/dichotomy/dichotomy.h => keyboards/dichotomy/dichotomy.h +0 -4
@@ 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)

M keyboards/honeycomb/honeycomb.h => keyboards/honeycomb/honeycomb.h +0 -5
@@ 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)

M keyboards/mitosis/mitosis.h => keyboards/mitosis/mitosis.h +0 -3
@@ 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)

M keyboards/redox_w/redox_w.h => keyboards/redox_w/redox_w.h +0 -3
@@ 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)

M keyboards/telophase/telophase.h => keyboards/telophase/telophase.h +0 -3
@@ 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)