summaryrefslogtreecommitdiff
path: root/keyboards/clueboard_66/rev2/rev2.c
diff options
context:
space:
mode:
authorskullydazed <skullydazed@users.noreply.github.com>2017-10-17 18:05:21 -0700
committerGitHub <noreply@github.com>2017-10-17 18:05:21 -0700
commit3f3fa0791895f14370b4bb3e8512597688c45122 (patch)
treeac5672833f0d3a0d91798401d2ff3caa560904b2 /keyboards/clueboard_66/rev2/rev2.c
parentad49db8cd2557b6c54531059d4d162623520bd17 (diff)
Reorganize clueboard into a single directory (#1855)
Diffstat (limited to 'keyboards/clueboard_66/rev2/rev2.c')
-rw-r--r--keyboards/clueboard_66/rev2/rev2.c63
1 files changed, 0 insertions, 63 deletions
diff --git a/keyboards/clueboard_66/rev2/rev2.c b/keyboards/clueboard_66/rev2/rev2.c
deleted file mode 100644
index 1a35b87b84..0000000000
--- a/keyboards/clueboard_66/rev2/rev2.c
+++ /dev/null
@@ -1,63 +0,0 @@
-#include "rev2.h"
-#include <avr/io.h>
-#include "backlight.h"
-#include "print.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 matrix_scan_kb(void) {
- matrix_scan_user();
-}
-
-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
- }
-}
-
-void led_init_ports() {
- // * Set our LED pins as output
- DDRB |= (1<<4);
-}
-
-void led_set_kb(uint8_t usb_led) {
- DDRB |= (1<<4);
- if (usb_led & (1<<USB_LED_CAPS_LOCK)) {
- // Turn capslock on
- PORTB |= (1<<4);
- } else {
- // Turn capslock off
- PORTB &= ~(1<<4);
- }
-}