diff options
author | Alex Ong <the.onga@gmail.com> | 2019-01-28 12:05:34 +1100 |
---|---|---|
committer | Drashna Jaelre <drashna@live.com> | 2019-01-27 17:05:34 -0800 |
commit | 0d7631937018306b025cebd09cb33c55f965a5e6 (patch) | |
tree | 1526d0601aba8cbdc947572887fa1d153e62b381 /keyboards/handwired/xealousbrown/xealousbrown.c | |
parent | 996ada1ba2cce18e1fed27fdcaf6a5dcc36fe9da (diff) | |
download | qmk_firmware-0d7631937018306b025cebd09cb33c55f965a5e6.tar.gz qmk_firmware-0d7631937018306b025cebd09cb33c55f965a5e6.zip |
[Keyboard] Added xealousbrown keyboard (#4945)
* Added xealousbrown keyboard.
* Changed to pragma once in config.h
* Update keyboards/handwired/xealousbrown/rules.mk
Added bootloader.
Co-Authored-By: alex-ong <the.onga@gmail.com>
* Update keyboards/handwired/xealousbrown/config.h
Commented out IS_COMMAND() since it is already default value.
Co-Authored-By: alex-ong <the.onga@gmail.com>
Diffstat (limited to 'keyboards/handwired/xealousbrown/xealousbrown.c')
-rw-r--r-- | keyboards/handwired/xealousbrown/xealousbrown.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/keyboards/handwired/xealousbrown/xealousbrown.c b/keyboards/handwired/xealousbrown/xealousbrown.c new file mode 100644 index 0000000000..5c8e2fb18a --- /dev/null +++ b/keyboards/handwired/xealousbrown/xealousbrown.c @@ -0,0 +1,8 @@ +#include "xealousbrown.h" + +void matrix_init_kb(void) { + // put your keyboard start-up code here + // runs once when the firmware starts up + + matrix_init_user(); +} |