aboutsummaryrefslogtreecommitdiff
path: root/quantum/dynamic_keymap.h
diff options
context:
space:
mode:
authorskullY <skullydazed@gmail.com>2019-08-30 11:19:03 -0700
committerskullydazed <skullydazed@users.noreply.github.com>2019-08-30 15:01:52 -0700
commitb624f32f944acdc59dcb130674c09090c5c404cb (patch)
treebc13adbba137d122d9a2c2fb2fafcbb08ac10e25 /quantum/dynamic_keymap.h
parent61af76a10d00aba185b8338604171de490a13e3b (diff)
downloadqmk_firmware-b624f32f944acdc59dcb130674c09090c5c404cb.tar.gz
qmk_firmware-b624f32f944acdc59dcb130674c09090c5c404cb.zip
clang-format changes
Diffstat (limited to 'quantum/dynamic_keymap.h')
-rw-r--r--quantum/dynamic_keymap.h25
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
21uint8_t dynamic_keymap_get_layer_count(void); 21uint8_t dynamic_keymap_get_layer_count(void);
22void *dynamic_keymap_key_to_eeprom_address(uint8_t layer, uint8_t row, uint8_t column); 22void * dynamic_keymap_key_to_eeprom_address(uint8_t layer, uint8_t row, uint8_t column);
23uint16_t dynamic_keymap_get_keycode(uint8_t layer, uint8_t row, uint8_t column); 23uint16_t dynamic_keymap_get_keycode(uint8_t layer, uint8_t row, uint8_t column);
24void dynamic_keymap_set_keycode(uint8_t layer, uint8_t row, uint8_t column, uint16_t keycode); 24void dynamic_keymap_set_keycode(uint8_t layer, uint8_t row, uint8_t column, uint16_t keycode);
25void dynamic_keymap_reset(void); 25void 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.
34void dynamic_keymap_get_buffer( uint16_t offset, uint16_t size, uint8_t *data ); 34void dynamic_keymap_get_buffer(uint16_t offset, uint16_t size, uint8_t *data);
35void dynamic_keymap_set_buffer( uint16_t offset, uint16_t size, uint8_t *data ); 35void 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
56uint8_t dynamic_keymap_macro_get_count(void); 54uint8_t dynamic_keymap_macro_get_count(void);
57uint16_t dynamic_keymap_macro_get_buffer_size(void); 55uint16_t dynamic_keymap_macro_get_buffer_size(void);
58void dynamic_keymap_macro_get_buffer( uint16_t offset, uint16_t size, uint8_t *data ); 56void dynamic_keymap_macro_get_buffer(uint16_t offset, uint16_t size, uint8_t *data);
59void dynamic_keymap_macro_set_buffer( uint16_t offset, uint16_t size, uint8_t *data ); 57void dynamic_keymap_macro_set_buffer(uint16_t offset, uint16_t size, uint8_t *data);
60void dynamic_keymap_macro_reset(void); 58void dynamic_keymap_macro_reset(void);
61
62void dynamic_keymap_macro_send( uint8_t id );
63 59
60void dynamic_keymap_macro_send(uint8_t id);