Browse Source

Tidy up backlight header use to avoid build issues (#6714)

pull/6724/head
Joel Challis 4 years ago
committed by GitHub
parent
commit
ad3e4d6c13
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
9 changed files with 0 additions and 30 deletions
  1. +0
    -3
      keyboards/chimera_ergo/chimera_ergo.h
  2. +0
    -3
      keyboards/chimera_ls/chimera_ls.h
  3. +0
    -3
      keyboards/chimera_ortho/chimera_ortho.h
  4. +0
    -3
      keyboards/comet46/comet46.h
  5. +0
    -4
      keyboards/dichotomy/dichotomy.h
  6. +0
    -5
      keyboards/honeycomb/honeycomb.h
  7. +0
    -3
      keyboards/mitosis/mitosis.h
  8. +0
    -3
      keyboards/redox_w/redox_w.h
  9. +0
    -3
      keyboards/telophase/telophase.h

+ 0
- 3
keyboards/chimera_ergo/chimera_ergo.h View File

@ -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)


+ 0
- 3
keyboards/chimera_ls/chimera_ls.h View File

@ -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)


+ 0
- 3
keyboards/chimera_ortho/chimera_ortho.h View File

@ -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)


+ 0
- 3
keyboards/comet46/comet46.h View File

@ -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


+ 0
- 4
keyboards/dichotomy/dichotomy.h View File

@ -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)


+ 0
- 5
keyboards/honeycomb/honeycomb.h View File

@ -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)


+ 0
- 3
keyboards/mitosis/mitosis.h View File

@ -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)


+ 0
- 3
keyboards/redox_w/redox_w.h View File

@ -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)


+ 0
- 3
keyboards/telophase/telophase.h View File

@ -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)


Loading…
Cancel
Save