From e3b3c1ef82c05533c7368c834da4aee3ed0a3261 Mon Sep 17 00:00:00 2001 From: Unknown Date: Fri, 8 Dec 2017 15:12:41 +0800 Subject: add do60 support --- keyboards/do60/do60.h | 41 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 keyboards/do60/do60.h (limited to 'keyboards/do60/do60.h') diff --git a/keyboards/do60/do60.h b/keyboards/do60/do60.h new file mode 100644 index 0000000000..5ea7545434 --- /dev/null +++ b/keyboards/do60/do60.h @@ -0,0 +1,41 @@ +#ifndef DO60_H +#define DO60_H + +#include "quantum.h" +#include "led.h" + +/* DO60 LEDs + * GPIO pads + * 0 F7 not connected + * 1 F6 RGB PWM Underglow + * 2 F5 Backlight LED + * 3 F4 not connected + * B2 Capslock LED + * B0 not connected + */ + + +inline void do60_caps_led_on(void) { DDRB |= (1<<2); PORTB &= ~(1<<2); } +inline void do60_bl_led_on(void) { DDRF |= (1<<4); PORTF &= ~(1<<4); } + +inline void do60_caps_led_off(void) { DDRB &= ~(1<<2); PORTB &= ~(1<<2); } +inline void do60_bl_led_off(void) { DDRF &= ~(1<<4); PORTF &= ~(1<<4); } + + + +/* Do60 Keymap Definition Macro */ +#define KEYMAP( \ + K00, K01, K02, K03, K04, K05, K06, K07, K08, K09, K0A, K0B, K0C, K0D, K0E, \ + K10, K11, K12, K13, K14, K15, K16, K17, K18, K19, K1A, K1B, K1C, K1E, \ + K20, K21, K22, K23, K24, K25, K26, K27, K28, K29, K2A, K2B, K2C, K2E, \ + K30, K31, K32, K33, K34, K35, K36, K37, K38, K39, K3A, K3B, K3C, K3D, K3E, \ + K40, K41, K42, K45, K46, K47, K4A, K4B, K4C, K4D, K4E \ +) { \ + { K00, K01, K02, K03, K04, K05, K06, K07, K08, K09, K0A, K0B, K0C, K0D, K0E }, \ + { K10, K11, K12, K13, K14, K15, K16, K17, K18, K19, K1A, K1B, K1C, KC_NO, K1E }, \ + { K20, K21, K22, K23, K24, K25, K26, K27, K28, K29, K2A, K2B, K2C, KC_NO, K2E }, \ + { K30, K31, K32, K33, K34, K35, K36, K37, K38, K39, K3A, K3B, K3C, K3D, K3E }, \ + { K40, K41, K42, KC_NO,KC_NO,K45, K46, K47, KC_NO,KC_NO,K4A, K4B, K4C, K4D, K4E } \ +} + +#endif -- cgit v1.2.3