summaryrefslogtreecommitdiff
path: root/keyboards/clueboard/66/rev4/rev4.c
diff options
context:
space:
mode:
authorskullydazed <skullydazed@users.noreply.github.com>2020-01-26 22:32:11 -0800
committerNick Brassel <nick@tzarc.org>2020-01-27 17:38:47 +1100
commit212aeee202f1031395f56a087441c6da030afdd4 (patch)
treea1abbdc0605d54d187495e1cd1ca798c15c5a0db /keyboards/clueboard/66/rev4/rev4.c
parent5fb95c5f94d6c939dfea2fc716ef818d6242b918 (diff)
Revert "Clueboard Rev4 Updates aka Volcano 660 (#7942)"
This reverts commit e0a0430c31bd9fabab93e8933e9988e0d3f66434.
Diffstat (limited to 'keyboards/clueboard/66/rev4/rev4.c')
-rw-r--r--keyboards/clueboard/66/rev4/rev4.c49
1 files changed, 40 insertions, 9 deletions
diff --git a/keyboards/clueboard/66/rev4/rev4.c b/keyboards/clueboard/66/rev4/rev4.c
index 99a7cb9452..041c31cd32 100644
--- a/keyboards/clueboard/66/rev4/rev4.c
+++ b/keyboards/clueboard/66/rev4/rev4.c
@@ -1,4 +1,5 @@
#include "rev4.h"
+//#include "backlight.h"
void matrix_init_kb(void) {
// put your keyboard start-up code here
@@ -7,19 +8,49 @@ void matrix_init_kb(void) {
led_init_ports();
}
-void led_init_ports() {
+void matrix_scan_kb(void) {
+ matrix_scan_user();
+}
+
+void backlight_init_ports(void) {
+ print("init_backlight_pin()\n");
// Set our LED pins as output
- setPinOutput(B13); // LED1
- writePinLow(B13);
+ //DDRD |= (1<<6); // Esc
+ //DDRB |= (1<<7); // Page Up
+ //DDRD |= (1<<4); // Arrows
- setPinOutput(B14); // LED2
- writePinLow(B14);
+ // Set our LED pins low
+ //PORTD &= ~(1<<6); // Esc
+ //PORTB &= ~(1<<7); // Page Up
+ //PORTD &= ~(1<<4); // Arrows
+}
- setPinOutput(B8); // LED3
- writePinLow(B8);
+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
+ }
+*/
+}
- setPinOutput(B0); // Capslock LED
- writePinLow(B0);
+void led_init_ports() {
+ // Set our LED pins as output
+ palSetPadMode(GPIOB, 13, PAL_MODE_OUTPUT_PUSHPULL); // LED1
+ palClearPad(GPIOB, 13);
+ palSetPadMode(GPIOB, 14, PAL_MODE_OUTPUT_PUSHPULL); // LED2
+ palClearPad(GPIOB, 14);
+ palSetPadMode(GPIOA, 8, PAL_MODE_OUTPUT_PUSHPULL); // LED3
+ palClearPad(GPIOA, 8);
+ palSetPadMode(GPIOA, 0, PAL_MODE_OUTPUT_PUSHPULL); // Capslock LED
+ palClearPad(GPIOA, 0);
}
void led_set_kb(uint8_t usb_led) {