-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathuser_eeprom.h
34 lines (32 loc) · 901 Bytes
/
user_eeprom.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#pragma once
typedef union {
uint32_t raw;
struct {
bool override_tab : 1;
bool override_enter : 1;
bool override_backspace : 1;
bool override_delete : 1;
bool override_arrows : 1;
bool override_home : 1;
bool override_end : 1;
bool override_ctrl_k : 1;
bool override_ctrl_o : 1;
bool override_ctrl_u : 1;
bool override_word_mv : 1;
bool override_word_dl : 1;
bool override_cmd_q : 1;
bool override_modded_esc : 1;
bool override_linux_cmd : 1;
bool is_jis_mode : 1;
bool is_auto_detect_os : 1;
bool is_macos : 1;
bool is_windows : 1;
bool is_linux : 1;
bool is_ios : 1;
bool hrmod : 1;
bool spc_tap : 1;
bool ergolft : 1;
bool ergorit : 1;
};
} user_config_t;
user_config_t user_config;