diff options
author | Jeff Hastings <jeffmhastings@gmail.com> | 2019-04-19 13:43:15 -0400 |
---|---|---|
committer | Drashna Jaelre <drashna@live.com> | 2019-04-19 10:43:15 -0700 |
commit | 5539d7affb52f467b41eb9245045ee4768a6b391 (patch) | |
tree | fd3d467a8474c806f54a2356960cc4076d01c5d6 /keyboards/1upkeyboards/super16/super16.c | |
parent | 7fa854729c4391e5ae3b09e134eccd73f1307ac1 (diff) | |
download | qmk_firmware-5539d7affb52f467b41eb9245045ee4768a6b391.tar.gz qmk_firmware-5539d7affb52f467b41eb9245045ee4768a6b391.zip |
[Keyboard] Update 1upkeyboards/super16 with code from vendor (#5645)
* readme formatting
* cleanup rules.mk
* update config.h
* add numpad layout
* Update default keymap
* cleanup rules
* disable console and commands to fit the bootloader
* cleanup whitespace
* revert readme changes
* revert changes to config.h
* remove unused keycodes
* add LAYOUTS to rules.mk
* remove redundant config setting
Co-Authored-By: jeffmhastings <jeffmhastings@gmail.com>
Diffstat (limited to 'keyboards/1upkeyboards/super16/super16.c')
-rw-r--r-- | keyboards/1upkeyboards/super16/super16.c | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/keyboards/1upkeyboards/super16/super16.c b/keyboards/1upkeyboards/super16/super16.c index cf33cab926..72e47f447b 100644 --- a/keyboards/1upkeyboards/super16/super16.c +++ b/keyboards/1upkeyboards/super16/super16.c @@ -16,28 +16,28 @@ #include "super16.h" void matrix_init_kb(void) { - // put your keyboard start-up code here - // runs once when the firmware starts up + // put your keyboard start-up code here + // runs once when the firmware starts up - matrix_init_user(); + matrix_init_user(); } void matrix_scan_kb(void) { - // put your looping keyboard code here - // runs every cycle (a lot) + // put your looping keyboard code here + // runs every cycle (a lot) - matrix_scan_user(); + matrix_scan_user(); } bool process_record_kb(uint16_t keycode, keyrecord_t *record) { - // put your per-action keyboard code here - // runs for every action, just before processing by the firmware + // put your per-action keyboard code here + // runs for every action, just before processing by the firmware - return process_record_user(keycode, record); + return process_record_user(keycode, record); } void led_set_kb(uint8_t usb_led) { - // put your keyboard LED indicator (ex: Caps Lock LED) toggling code here + // put your keyboard LED indicator (ex: Caps Lock LED) toggling code here - led_set_user(usb_led); + led_set_user(usb_led); } |