diff options
| author | Jack Humbert <jack.humb@gmail.com> | 2016-06-23 22:18:20 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2016-06-23 22:18:20 -0400 |
| commit | 13bb6b4b7fdd2b3e419d0f89c93fb980b00eeb9b (patch) | |
| tree | 2777e5c95bad3f5a9773fc58524a6ad99df63738 /keyboards/phantom/phantom.c | |
| parent | ba116ceb496011bb35ce074a3ba8c2448f059260 (diff) | |
| download | qmk_firmware-13bb6b4b7fdd2b3e419d0f89c93fb980b00eeb9b.tar.gz qmk_firmware-13bb6b4b7fdd2b3e419d0f89c93fb980b00eeb9b.zip | |
Backlight abstraction and other changes (#439)
* redoes matrix pins, abstracts backlight code for B5,6,7
* slimming down keyboard stuff, backlight breathing implemented
* don't call backlight init when no pin
* cleans up user/kb/quantum calls, keyboard files
* fix pvc atomic
* replaces CHANNEL with correct var in breathing
* removes .hexs, updates readmes, updates template
* cleans-up clueboards, readmes to lowercase
* updates readme
Diffstat (limited to 'keyboards/phantom/phantom.c')
| -rw-r--r-- | keyboards/phantom/phantom.c | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/keyboards/phantom/phantom.c b/keyboards/phantom/phantom.c index 30fef63c6..d53af491f 100644 --- a/keyboards/phantom/phantom.c +++ b/keyboards/phantom/phantom.c | |||
| @@ -1,25 +1,9 @@ | |||
| 1 | #include "phantom.h" | 1 | #include "phantom.h" |
| 2 | #include "led.h" | 2 | #include "led.h" |
| 3 | 3 | ||
| 4 | __attribute__ ((weak)) | ||
| 5 | void matrix_init_user(void) { | ||
| 6 | // leave these blank | ||
| 7 | }; | ||
| 8 | |||
| 9 | __attribute__ ((weak)) | ||
| 10 | void matrix_scan_user(void) { | ||
| 11 | // leave these blank | ||
| 12 | }; | ||
| 13 | |||
| 14 | void matrix_init_kb(void) { | 4 | void matrix_init_kb(void) { |
| 15 | // put your keyboard start-up code here | 5 | // put your keyboard start-up code here |
| 16 | // runs once when the firmware starts up | 6 | // runs once when the firmware starts up |
| 17 | matrix_init_user(); | 7 | matrix_init_user(); |
| 18 | led_init_ports(); | 8 | led_init_ports(); |
| 19 | }; | 9 | }; |
| 20 | |||
| 21 | void matrix_scan_kb(void) { | ||
| 22 | // put your looping keyboard code here | ||
| 23 | // runs every cycle (a lot) | ||
| 24 | matrix_scan_user(); | ||
| 25 | }; | ||
