summaryrefslogtreecommitdiff
path: root/quantum/eeconfig.c
diff options
context:
space:
mode:
authorDrashna Jael're <drashna@live.com>2022-03-25 16:19:22 -0700
committerDrashna Jael're <drashna@live.com>2022-03-25 16:19:22 -0700
commit53ff570bf068e04740f187163774327839dfa68b (patch)
tree5429e069fc593d484b0b479de422b51ac239be83 /quantum/eeconfig.c
parente8171efc7158ba4ebb24827680b19b775d366b1a (diff)
parentefc9c525b19b33c6e09057218ea64f07f45f9555 (diff)
Remerge 0.16.x' into firmware21
Diffstat (limited to 'quantum/eeconfig.c')
-rw-r--r--quantum/eeconfig.c70
1 files changed, 52 insertions, 18 deletions
diff --git a/quantum/eeconfig.c b/quantum/eeconfig.c
index 7c1a1f3cb2..1aa9e8725c 100644
--- a/quantum/eeconfig.c
+++ b/quantum/eeconfig.c
@@ -52,7 +52,7 @@ void eeconfig_init_quantum(void) {
eeprom_update_byte(EECONFIG_KEYMAP_UPPER_BYTE, 0);
eeprom_update_byte(EECONFIG_MOUSEKEY_ACCEL, 0);
eeprom_update_byte(EECONFIG_BACKLIGHT, 0);
- eeprom_update_byte(EECONFIG_AUDIO, 0xFF); // On by default
+ eeprom_update_byte(EECONFIG_AUDIO, 0xFF); // On by default
eeprom_update_dword(EECONFIG_RGBLIGHT, 0);
eeprom_update_byte(EECONFIG_STENOMODE, 0);
eeprom_update_dword(EECONFIG_HAPTIC, 0);
@@ -97,13 +97,17 @@ void eeconfig_init_quantum(void) {
*
* FIXME: needs doc
*/
-void eeconfig_init(void) { eeconfig_init_quantum(); }
+void eeconfig_init(void) {
+ eeconfig_init_quantum();
+}
/** \brief eeconfig enable
*
* FIXME: needs doc
*/
-void eeconfig_enable(void) { eeprom_update_word(EECONFIG_MAGIC, EECONFIG_MAGIC_NUMBER); }
+void eeconfig_enable(void) {
+ eeprom_update_word(EECONFIG_MAGIC, EECONFIG_MAGIC_NUMBER);
+}
/** \brief eeconfig disable
*
@@ -148,29 +152,39 @@ bool eeconfig_is_disabled(void) {
*
* FIXME: needs doc
*/
-uint8_t eeconfig_read_debug(void) { return eeprom_read_byte(EECONFIG_DEBUG); }
+uint8_t eeconfig_read_debug(void) {
+ return eeprom_read_byte(EECONFIG_DEBUG);
+}
/** \brief eeconfig update debug
*
* FIXME: needs doc
*/
-void eeconfig_update_debug(uint8_t val) { eeprom_update_byte(EECONFIG_DEBUG, val); }
+void eeconfig_update_debug(uint8_t val) {
+ eeprom_update_byte(EECONFIG_DEBUG, val);
+}
/** \brief eeconfig read default layer
*
* FIXME: needs doc
*/
-uint8_t eeconfig_read_default_layer(void) { return eeprom_read_byte(EECONFIG_DEFAULT_LAYER); }
+uint8_t eeconfig_read_default_layer(void) {
+ return eeprom_read_byte(EECONFIG_DEFAULT_LAYER);
+}
/** \brief eeconfig update default layer
*
* FIXME: needs doc
*/
-void eeconfig_update_default_layer(uint8_t val) { eeprom_update_byte(EECONFIG_DEFAULT_LAYER, val); }
+void eeconfig_update_default_layer(uint8_t val) {
+ eeprom_update_byte(EECONFIG_DEFAULT_LAYER, val);
+}
/** \brief eeconfig read keymap
*
* FIXME: needs doc
*/
-uint16_t eeconfig_read_keymap(void) { return (eeprom_read_byte(EECONFIG_KEYMAP_LOWER_BYTE) | (eeprom_read_byte(EECONFIG_KEYMAP_UPPER_BYTE) << 8)); }
+uint16_t eeconfig_read_keymap(void) {
+ return (eeprom_read_byte(EECONFIG_KEYMAP_LOWER_BYTE) | (eeprom_read_byte(EECONFIG_KEYMAP_UPPER_BYTE) << 8));
+}
/** \brief eeconfig update keymap
*
* FIXME: needs doc
@@ -184,53 +198,73 @@ void eeconfig_update_keymap(uint16_t val) {
*
* FIXME: needs doc
*/
-uint8_t eeconfig_read_audio(void) { return eeprom_read_byte(EECONFIG_AUDIO); }
+uint8_t eeconfig_read_audio(void) {
+ return eeprom_read_byte(EECONFIG_AUDIO);
+}
/** \brief eeconfig update audio
*
* FIXME: needs doc
*/
-void eeconfig_update_audio(uint8_t val) { eeprom_update_byte(EECONFIG_AUDIO, val); }
+void eeconfig_update_audio(uint8_t val) {
+ eeprom_update_byte(EECONFIG_AUDIO, val);
+}
/** \brief eeconfig read kb
*
* FIXME: needs doc
*/
-uint32_t eeconfig_read_kb(void) { return eeprom_read_dword(EECONFIG_KEYBOARD); }
+uint32_t eeconfig_read_kb(void) {
+ return eeprom_read_dword(EECONFIG_KEYBOARD);
+}
/** \brief eeconfig update kb
*
* FIXME: needs doc
*/
-void eeconfig_update_kb(uint32_t val) { eeprom_update_dword(EECONFIG_KEYBOARD, val); }
+void eeconfig_update_kb(uint32_t val) {
+ eeprom_update_dword(EECONFIG_KEYBOARD, val);
+}
/** \brief eeconfig read user
*
* FIXME: needs doc
*/
-uint32_t eeconfig_read_user(void) { return eeprom_read_dword(EECONFIG_USER); }
+uint32_t eeconfig_read_user(void) {
+ return eeprom_read_dword(EECONFIG_USER);
+}
/** \brief eeconfig update user
*
* FIXME: needs doc
*/
-void eeconfig_update_user(uint32_t val) { eeprom_update_dword(EECONFIG_USER, val); }
+void eeconfig_update_user(uint32_t val) {
+ eeprom_update_dword(EECONFIG_USER, val);
+}
/** \brief eeconfig read haptic
*
* FIXME: needs doc
*/
-uint32_t eeconfig_read_haptic(void) { return eeprom_read_dword(EECONFIG_HAPTIC); }
+uint32_t eeconfig_read_haptic(void) {
+ return eeprom_read_dword(EECONFIG_HAPTIC);
+}
/** \brief eeconfig update haptic
*
* FIXME: needs doc
*/
-void eeconfig_update_haptic(uint32_t val) { eeprom_update_dword(EECONFIG_HAPTIC, val); }
+void eeconfig_update_haptic(uint32_t val) {
+ eeprom_update_dword(EECONFIG_HAPTIC, val);
+}
/** \brief eeconfig read split handedness
*
* FIXME: needs doc
*/
-bool eeconfig_read_handedness(void) { return !!eeprom_read_byte(EECONFIG_HANDEDNESS); }
+bool eeconfig_read_handedness(void) {
+ return !!eeprom_read_byte(EECONFIG_HANDEDNESS);
+}
/** \brief eeconfig update split handedness
*
* FIXME: needs doc
*/
-void eeconfig_update_handedness(bool val) { eeprom_update_byte(EECONFIG_HANDEDNESS, !!val); }
+void eeconfig_update_handedness(bool val) {
+ eeprom_update_byte(EECONFIG_HANDEDNESS, !!val);
+}