diff options
| author | skullY <skullydazed@gmail.com> | 2019-08-30 11:19:03 -0700 |
|---|---|---|
| committer | skullydazed <skullydazed@users.noreply.github.com> | 2019-08-30 15:01:52 -0700 |
| commit | b624f32f944acdc59dcb130674c09090c5c404cb (patch) | |
| tree | bc13adbba137d122d9a2c2fb2fafcbb08ac10e25 /quantum/dynamic_keymap.h | |
| parent | 61af76a10d00aba185b8338604171de490a13e3b (diff) | |
| download | qmk_firmware-b624f32f944acdc59dcb130674c09090c5c404cb.tar.gz qmk_firmware-b624f32f944acdc59dcb130674c09090c5c404cb.zip | |
clang-format changes
Diffstat (limited to 'quantum/dynamic_keymap.h')
| -rw-r--r-- | quantum/dynamic_keymap.h | 25 |
1 files changed, 11 insertions, 14 deletions
diff --git a/quantum/dynamic_keymap.h b/quantum/dynamic_keymap.h index 63653f6cb..55676172b 100644 --- a/quantum/dynamic_keymap.h +++ b/quantum/dynamic_keymap.h | |||
| @@ -18,11 +18,11 @@ | |||
| 18 | #include <stdint.h> | 18 | #include <stdint.h> |
| 19 | #include <stdbool.h> | 19 | #include <stdbool.h> |
| 20 | 20 | ||
| 21 | uint8_t dynamic_keymap_get_layer_count(void); | 21 | uint8_t dynamic_keymap_get_layer_count(void); |
| 22 | void *dynamic_keymap_key_to_eeprom_address(uint8_t layer, uint8_t row, uint8_t column); | 22 | void * dynamic_keymap_key_to_eeprom_address(uint8_t layer, uint8_t row, uint8_t column); |
| 23 | uint16_t dynamic_keymap_get_keycode(uint8_t layer, uint8_t row, uint8_t column); | 23 | uint16_t dynamic_keymap_get_keycode(uint8_t layer, uint8_t row, uint8_t column); |
| 24 | void dynamic_keymap_set_keycode(uint8_t layer, uint8_t row, uint8_t column, uint16_t keycode); | 24 | void dynamic_keymap_set_keycode(uint8_t layer, uint8_t row, uint8_t column, uint16_t keycode); |
| 25 | void dynamic_keymap_reset(void); | 25 | void dynamic_keymap_reset(void); |
| 26 | // These get/set the keycodes as stored in the EEPROM buffer | 26 | // These get/set the keycodes as stored in the EEPROM buffer |
| 27 | // Data is big-endian 16-bit values (the keycodes) | 27 | // Data is big-endian 16-bit values (the keycodes) |
| 28 | // Order is by layer/row/column | 28 | // Order is by layer/row/column |
| @@ -31,14 +31,12 @@ void dynamic_keymap_reset(void); | |||
| 31 | // This is only really useful for host applications that want to get a whole keymap fast, | 31 | // This is only really useful for host applications that want to get a whole keymap fast, |
| 32 | // by reading 14 keycodes (28 bytes) at a time, reducing the number of raw HID transfers by | 32 | // by reading 14 keycodes (28 bytes) at a time, reducing the number of raw HID transfers by |
| 33 | // a factor of 14. | 33 | // a factor of 14. |
| 34 | void dynamic_keymap_get_buffer( uint16_t offset, uint16_t size, uint8_t *data ); | 34 | void dynamic_keymap_get_buffer(uint16_t offset, uint16_t size, uint8_t *data); |
| 35 | void dynamic_keymap_set_buffer( uint16_t offset, uint16_t size, uint8_t *data ); | 35 | void dynamic_keymap_set_buffer(uint16_t offset, uint16_t size, uint8_t *data); |
| 36 | 36 | ||
| 37 | // This overrides the one in quantum/keymap_common.c | 37 | // This overrides the one in quantum/keymap_common.c |
| 38 | // uint16_t keymap_key_to_keycode(uint8_t layer, keypos_t key); | 38 | // uint16_t keymap_key_to_keycode(uint8_t layer, keypos_t key); |
| 39 | 39 | ||
| 40 | |||
| 41 | |||
| 42 | // Note regarding dynamic_keymap_macro_set_buffer(): | 40 | // Note regarding dynamic_keymap_macro_set_buffer(): |
| 43 | // The last byte of the buffer is used as a valid flag, | 41 | // The last byte of the buffer is used as a valid flag, |
| 44 | // so macro sending is disabled during writing a new buffer, | 42 | // so macro sending is disabled during writing a new buffer, |
| @@ -53,11 +51,10 @@ void dynamic_keymap_set_buffer( uint16_t offset, uint16_t size, uint8_t *data ); | |||
| 53 | // and it not being null means the buffer can be considered in an | 51 | // and it not being null means the buffer can be considered in an |
| 54 | // invalid state. | 52 | // invalid state. |
| 55 | 53 | ||
| 56 | uint8_t dynamic_keymap_macro_get_count(void); | 54 | uint8_t dynamic_keymap_macro_get_count(void); |
| 57 | uint16_t dynamic_keymap_macro_get_buffer_size(void); | 55 | uint16_t dynamic_keymap_macro_get_buffer_size(void); |
| 58 | void dynamic_keymap_macro_get_buffer( uint16_t offset, uint16_t size, uint8_t *data ); | 56 | void dynamic_keymap_macro_get_buffer(uint16_t offset, uint16_t size, uint8_t *data); |
| 59 | void dynamic_keymap_macro_set_buffer( uint16_t offset, uint16_t size, uint8_t *data ); | 57 | void dynamic_keymap_macro_set_buffer(uint16_t offset, uint16_t size, uint8_t *data); |
| 60 | void dynamic_keymap_macro_reset(void); | 58 | void dynamic_keymap_macro_reset(void); |
| 61 | |||
| 62 | void dynamic_keymap_macro_send( uint8_t id ); | ||
| 63 | 59 | ||
| 60 | void dynamic_keymap_macro_send(uint8_t id); | ||
