From 5fd68266f5d90b2c7045f44f678d71b782907752 Mon Sep 17 00:00:00 2001 From: skullydazed Date: Fri, 29 Sep 2017 16:17:30 -0700 Subject: Clueboard 60% support (#1746) * initial clueboard_60 support * LED lighting support * fix the clueboard->clueboard_66 rename * Add layout support to clueboard_60 * Fix the 60_iso layout so it's actually iso * add a default keymap for AEK layout * fix clueboard_17 * Fixup the ISO layouts * Fix the `wait_ms()/wait_us()` definitions for chibios * Fix up the wait_ms/wait_us hack. Reduce stack size. * Add a missing #include "wait.h" * commit files that should have already been comitted --- keyboards/clueboard_66/rev1/Makefile | 3 +++ keyboards/clueboard_66/rev1/config.h | 36 +++++++++++++++++++++++++++ keyboards/clueboard_66/rev1/rev1.c | 17 +++++++++++++ keyboards/clueboard_66/rev1/rev1.h | 47 ++++++++++++++++++++++++++++++++++++ keyboards/clueboard_66/rev1/rules.mk | 1 + 5 files changed, 104 insertions(+) create mode 100644 keyboards/clueboard_66/rev1/Makefile create mode 100644 keyboards/clueboard_66/rev1/config.h create mode 100644 keyboards/clueboard_66/rev1/rev1.c create mode 100644 keyboards/clueboard_66/rev1/rev1.h create mode 100644 keyboards/clueboard_66/rev1/rules.mk (limited to 'keyboards/clueboard_66/rev1') diff --git a/keyboards/clueboard_66/rev1/Makefile b/keyboards/clueboard_66/rev1/Makefile new file mode 100644 index 0000000000..191c6bb664 --- /dev/null +++ b/keyboards/clueboard_66/rev1/Makefile @@ -0,0 +1,3 @@ +ifndef MAKEFILE_INCLUDED + include ../../../Makefile +endif \ No newline at end of file diff --git a/keyboards/clueboard_66/rev1/config.h b/keyboards/clueboard_66/rev1/config.h new file mode 100644 index 0000000000..f40876ffbf --- /dev/null +++ b/keyboards/clueboard_66/rev1/config.h @@ -0,0 +1,36 @@ +#ifndef REV2_CONFIG_H +#define REV2_CONFIG_H + +#include "../config.h" + +#define PRODUCT_ID 0x2301 +#define DEVICE_VER 0x0003 + +/* key matrix size */ +#define MATRIX_ROWS 5 +#define MATRIX_COLS 16 + +// ROWS: Top to bottom, COLS: Left to right +/* Column pin configuration +* col: 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 +* pin: B3 F1 F4 F5 F6 C7 C6 B6 B5 B4 D7 D6 D4 F7 B0 B1 +*/ +#define MATRIX_COL_PINS { B3, F1, F4, F5, F6, C7, C6, B6, B5, B4, D7, D6, D4, F7, B0, B1 } +/* Row pin configuration +* row: 0 1 2 3 4 +* pin: D1 D0 D2 D5 D3 +*/ +#define MATRIX_ROW_PINS { D1, D0, D2, D5, D3 } +#define UNUSED_PINS + +/* Underlight configuration + */ +#define RGB_DI_PIN B2 +#define RGBLIGHT_ANIMATIONS +#define RGBLED_NUM 14 // Number of LEDs +#define RGBLIGHT_HUE_STEP 10 +#define RGBLIGHT_SAT_STEP 17 +#define RGBLIGHT_VAL_STEP 17 + + +#endif \ No newline at end of file diff --git a/keyboards/clueboard_66/rev1/rev1.c b/keyboards/clueboard_66/rev1/rev1.c new file mode 100644 index 0000000000..90fc6956c9 --- /dev/null +++ b/keyboards/clueboard_66/rev1/rev1.c @@ -0,0 +1,17 @@ +#include "rev1.h" + +void led_init_ports() { + // * Set our LED pins as output + DDRF |= (1<<0); +} + +void led_set_kb(uint8_t usb_led) { + DDRF |= (1<<0); + if (usb_led & (1<