summaryrefslogtreecommitdiff
path: root/keyboards/clueboard2/clueboard2.c
diff options
context:
space:
mode:
authorcbbrowne <cbbrowne@cbbrowne.tor.int-afilias.info>2016-08-08 13:50:01 -0400
committercbbrowne <cbbrowne@cbbrowne.tor.int-afilias.info>2016-08-08 13:50:01 -0400
commit6ce0195e24bde8ce83976ba7fd2a701e7a1f13d7 (patch)
tree7dd612aad050f9a899911987f4eee563a1a326af /keyboards/clueboard2/clueboard2.c
parent64e051652b5a8dac3ab0a2d31fb061ee50ecb0e5 (diff)
parent55ca218634d78a0bb3cd9b326659e353fd8140ae (diff)
downloadqmk_firmware-6ce0195e24bde8ce83976ba7fd2a701e7a1f13d7.tar.gz
qmk_firmware-6ce0195e24bde8ce83976ba7fd2a701e7a1f13d7.zip
Merge branch 'master' of https://github.com/jackhumbert/qmk_firmware
Diffstat (limited to 'keyboards/clueboard2/clueboard2.c')
-rw-r--r--keyboards/clueboard2/clueboard2.c63
1 files changed, 0 insertions, 63 deletions
diff --git a/keyboards/clueboard2/clueboard2.c b/keyboards/clueboard2/clueboard2.c
deleted file mode 100644
index d78ffed9ba..0000000000
--- a/keyboards/clueboard2/clueboard2.c
+++ /dev/null
@@ -1,63 +0,0 @@
-#include "clueboard2.h"
-
-void matrix_init_kb(void) {
- // put your keyboard start-up code here
- // runs once when the firmware starts up
- matrix_init_user();
- led_init_ports();
-
- // JTAG disable for PORT F. write JTD bit twice within four cycles.
- MCUCR |= (1<<JTD);
- MCUCR |= (1<<JTD);
-};
-
-void led_init_ports() {
- // * Set our LED pins as output
- DDRB |= (1<<4);
-}
-
-void led_set_kb(uint8_t usb_led) {
- if (usb_led & (1<<USB_LED_CAPS_LOCK)) {
- // Turn capslock on
- PORTB |= (1<<4);
- } else {
- // Turn capslock off
- PORTB &= ~(1<<4);
- }
-}
-
-/* Clueboard 2.0 LED locations:
- *
- * Capslock: B4, pull high to turn on
- * LCtrl: Shared with Capslock, DO NOT INSTALL LED'S IN BOTH
- * Page Up: B7, pull high to turn on
- * Escape: D6, pull high to turn on
- * Arrows: D4, pull high to turn on
- */
-
-void backlight_init_ports(void) {
- print("init_backlight_pin()\n");
- // Set our LED pins as output
- DDRD |= (1<<6); // Esc
- DDRB |= (1<<7); // Page Up
- DDRD |= (1<<4); // Arrows
-
- // Set our LED pins low
- PORTD &= ~(1<<6); // Esc
- PORTB &= ~(1<<7); // Page Up
- PORTD &= ~(1<<4); // Arrows
-}
-
-void backlight_set(uint8_t level) {
- if ( level == 0 ) {
- // Turn off light
- PORTD |= (1<<6); // Esc
- PORTB |= (1<<7); // Page Up
- PORTD |= (1<<4); // Arrows
- } else {
- // Turn on light
- PORTD &= ~(1<<6); // Esc
- PORTB &= ~(1<<7); // Page Up
- PORTD &= ~(1<<4); // Arrows
- }
-}