diff options
author | noroadsleft <18669334+noroadsleft@users.noreply.github.com> | 2018-12-01 16:29:16 -0800 |
---|---|---|
committer | MechMerlin <30334081+mechmerlin@users.noreply.github.com> | 2018-12-01 16:29:16 -0800 |
commit | 064d9e21750e8c717aca5f79263ad93b6606e125 (patch) | |
tree | 38fa67cdbb255a253823acd639596fbc3de29999 /keyboards/handwired/promethium/promethium.h | |
parent | a90331aec21a47ef3a9fe47425c9c7204bc768b5 (diff) | |
download | qmk_firmware-064d9e21750e8c717aca5f79263ad93b6606e125.tar.gz qmk_firmware-064d9e21750e8c717aca5f79263ad93b6606e125.zip |
handwired/promethium Refactor and Configurator support (#4524)
* handwired/promethium: refactor
- config.h files
- updated to use #pragma once
- removed redundant config.h includes
- layout macro moved from config.h to promethium.h
- layout macro renamed from KEYMAP_CUSTOM to LAYOUT
* handwired/promethium: Configurator support
Diffstat (limited to 'keyboards/handwired/promethium/promethium.h')
-rw-r--r-- | keyboards/handwired/promethium/promethium.h | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/keyboards/handwired/promethium/promethium.h b/keyboards/handwired/promethium/promethium.h index 260f140c55..b8d6352201 100644 --- a/keyboards/handwired/promethium/promethium.h +++ b/keyboards/handwired/promethium/promethium.h @@ -7,4 +7,23 @@ void battery_poll(uint8_t level); void led_set_kb(uint8_t usb_led); void led_set_user(uint8_t usb_led); +#define LAYOUT( \ + k11, k12, k13, k14, k15, k16, k17, k18, k19, k1a, k1b, k1c, \ + k21, k22, k23, k24, k25, k26, k27, k28, k29, k2a, k2b, k2c, \ + k31, k32, k33, k34, k35, k36, k37, k38, k39, k3a, k3b, k3c, \ + k41, k42, k43, k44, k45, k46, k47, k48, k49, k4a, k4b, k4c, \ + tp1, tp2, tp3 \ +) \ +{ \ + {k11, k12, k13, k14, k15, k16}, \ + {k21, k22, k23, k24, k25, k26}, \ + {k31, k32, k33, k34, k35, k36}, \ + {k41, k42, k43, k44, k45, k46}, \ + {k17, k18, k19, k1a, k1b, k1c}, \ + {k27, k28, k29, k2a, k2b, k2c}, \ + {k37, k38, k39, k3a, k3b, k3c}, \ + {k47, k48, k49, k4a, k4b, k4c}, \ + {tp1, tp2, tp3, KC_NO, KC_NO, KC_NO} \ +} + #endif |