diff options
| author | Drashna Jaelre <drashna@live.com> | 2019-02-14 20:18:54 -0800 |
|---|---|---|
| committer | MechMerlin <30334081+mechmerlin@users.noreply.github.com> | 2019-02-14 20:18:54 -0800 |
| commit | cc5c6b449a4a36fc56fa5896b2b8f120e4bb0b31 (patch) | |
| tree | 395f57bdc4ed5384424bbc7c8d483cbee6253f63 /tmk_core/common/keyboard.c | |
| parent | 40e67a3074293bc8e96574e7d603a943d3ca8d38 (diff) | |
| download | qmk_firmware-cc5c6b449a4a36fc56fa5896b2b8f120e4bb0b31.tar.gz qmk_firmware-cc5c6b449a4a36fc56fa5896b2b8f120e4bb0b31.zip | |
Add kb and user level keyboard initialization functions (#3113)
* Add suspend functions
* Disable RGB code if it's disabled
* Add keyboard_init functions
* Change where references so it will compile
* Wrong command chained in wake up kb function
* Fix non-feature file changes
* Add documentation
* Re-add matrix init docs
* add rgblight code to example
* Remove suspend code
* Clean up docs
* Fix docs
* Fix suspend code
* more doc fixes
* change function to startup_* rather than keyboard_init_
* fix spelling error
* fix up docs to finish removing keyboard_init
* Use Pre and Post init functions
* Update Documenation
* Remove changes to my keymap and userspace code
* Cleanup
* Revert changes to extra files
* Forgot a semicolon
* Make sure all protocols call keyboard_setup
* Cleanup functions
* Unset startup_user
* Remove changes from division keyboard
* Readd startup_user function
* Remove all to startup_user
* Update docs/custom_quantum_functions.md
Co-Authored-By: drashna <drashna@live.com>
* Update docs/custom_quantum_functions.md
Co-Authored-By: drashna <drashna@live.com>
* Add suggestion line
* Rebase fixes
* Update documentation to be more useful/accurate
* Cleanup of documentation
* Fix spacing inconsistency
* Revert unexpected change to keymap
Diffstat (limited to 'tmk_core/common/keyboard.c')
| -rw-r--r-- | tmk_core/common/keyboard.c | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/tmk_core/common/keyboard.c b/tmk_core/common/keyboard.c index 6f659b244..15652276b 100644 --- a/tmk_core/common/keyboard.c +++ b/tmk_core/common/keyboard.c | |||
| @@ -139,6 +139,40 @@ __attribute__ ((weak)) | |||
| 139 | void matrix_setup(void) { | 139 | void matrix_setup(void) { |
| 140 | } | 140 | } |
| 141 | 141 | ||
| 142 | /** \brief keyboard_pre_init_user | ||
| 143 | * | ||
| 144 | * FIXME: needs doc | ||
| 145 | */ | ||
| 146 | __attribute__ ((weak)) | ||
| 147 | void keyboard_pre_init_user(void) { } | ||
| 148 | |||
| 149 | /** \brief keyboard_pre_init_kb | ||
| 150 | * | ||
| 151 | * FIXME: needs doc | ||
| 152 | */ | ||
| 153 | __attribute__ ((weak)) | ||
| 154 | void keyboard_pre_init_kb(void) { | ||
| 155 | keyboard_pre_init_user(); | ||
| 156 | } | ||
| 157 | |||
| 158 | /** \brief keyboard_post_init_user | ||
| 159 | * | ||
| 160 | * FIXME: needs doc | ||
| 161 | */ | ||
| 162 | |||
| 163 | __attribute__ ((weak)) | ||
| 164 | void keyboard_post_init_user() {} | ||
| 165 | |||
| 166 | /** \brief keyboard_post_init_kb | ||
| 167 | * | ||
| 168 | * FIXME: needs doc | ||
| 169 | */ | ||
| 170 | |||
| 171 | __attribute__ ((weak)) | ||
| 172 | void keyboard_post_init_kb(void) { | ||
| 173 | keyboard_post_init_user(); | ||
| 174 | } | ||
| 175 | |||
| 142 | /** \brief keyboard_setup | 176 | /** \brief keyboard_setup |
| 143 | * | 177 | * |
| 144 | * FIXME: needs doc | 178 | * FIXME: needs doc |
| @@ -146,6 +180,7 @@ void matrix_setup(void) { | |||
| 146 | void keyboard_setup(void) { | 180 | void keyboard_setup(void) { |
| 147 | disable_jtag(); | 181 | disable_jtag(); |
| 148 | matrix_setup(); | 182 | matrix_setup(); |
| 183 | keyboard_pre_init_kb(); | ||
| 149 | } | 184 | } |
| 150 | 185 | ||
| 151 | /** \brief is_keyboard_master | 186 | /** \brief is_keyboard_master |
| @@ -199,6 +234,7 @@ void keyboard_init(void) { | |||
| 199 | #if defined(NKRO_ENABLE) && defined(FORCE_NKRO) | 234 | #if defined(NKRO_ENABLE) && defined(FORCE_NKRO) |
| 200 | keymap_config.nkro = 1; | 235 | keymap_config.nkro = 1; |
| 201 | #endif | 236 | #endif |
| 237 | keyboard_post_init_kb(); /* Always keep this last */ | ||
| 202 | } | 238 | } |
| 203 | 239 | ||
| 204 | /** \brief Keyboard task: Do keyboard routine jobs | 240 | /** \brief Keyboard task: Do keyboard routine jobs |
