diff options
author | Stephan Bösebeck <sb@caluga.de> | 2016-04-19 23:07:11 +0200 |
---|---|---|
committer | Stephan Bösebeck <sb@caluga.de> | 2016-04-19 23:07:11 +0200 |
commit | 6ff5e1059256cfd6ec1cb88c12e90f57c10f44ef (patch) | |
tree | fa23de88dc8b8d3f3fe6a2e353eaa3ae1e38a1b8 /keyboard/atomic/atomic.c | |
parent | 04f36b36818885475c0b93046726d7e053691e7a (diff) | |
parent | a2ee27715880616a15756e1b9f42183d9fb08051 (diff) |
Merge branch 'master' of https://github.com/jackhumbert/qmk_firmware
Diffstat (limited to 'keyboard/atomic/atomic.c')
-rw-r--r-- | keyboard/atomic/atomic.c | 31 |
1 files changed, 27 insertions, 4 deletions
diff --git a/keyboard/atomic/atomic.c b/keyboard/atomic/atomic.c index 30e8122893..5e31264e68 100644 --- a/keyboard/atomic/atomic.c +++ b/keyboard/atomic/atomic.c @@ -2,12 +2,22 @@ __attribute__ ((weak)) void matrix_init_user(void) { - // leave these blank -} + // leave this function blank - it can be defined in a keymap file +}; __attribute__ ((weak)) void matrix_scan_user(void) { - // leave these blank + // leave this function blank - it can be defined in a keymap file +} + +__attribute__ ((weak)) +void process_action_user(keyrecord_t *record) { + // leave this function blank - it can be defined in a keymap file +} + +__attribute__ ((weak)) +void led_set_user(uint8_t usb_led) { + // leave this function blank - it can be defined in a keymap file } void matrix_init_kb(void) { @@ -33,4 +43,17 @@ void matrix_scan_kb(void) { // runs every cycle (a lot) matrix_scan_user(); -}
\ No newline at end of file +} + +void process_action_kb(keyrecord_t *record) { + // put your per-action keyboard code here + // runs for every action, just before processing by the firmware + + process_action_user(record); +} + +void led_set_kb(uint8_t usb_led) { + // put your keyboard LED indicator (ex: Caps Lock LED) toggling code here + + led_set_user(usb_led); +} |