summary refs log tree commit diff
path: root/quantum/eeconfig.h
diff options
context:
space:
mode:
authorQMK Bot <hello@qmk.fm>2022-02-12 10:29:31 -0800
committerGitHub <noreply@github.com>2022-02-12 18:29:31 +0000
commit63646e8906e062d1c1de3925cba70c4e3426a855 (patch)
tree4e91648b77b838e1125cf86331d7e84bde6d07a9 /quantum/eeconfig.h
parentafcdd7079c774dec2aa4b7f2d08adf8b7310919b (diff)
Format code according to conventions (#16322)
Diffstat (limited to 'quantum/eeconfig.h')
-rw-r--r--quantum/eeconfig.h52
1 files changed, 27 insertions, 25 deletions
diff --git a/quantum/eeconfig.h b/quantum/eeconfig.h
index 22d874273c..f3cd1867ab 100644
--- a/quantum/eeconfig.h
+++ b/quantum/eeconfig.h
@@ -21,7 +21,7 @@ along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #include <stdbool.h>
 
 #ifndef EECONFIG_MAGIC_NUMBER
-#    define EECONFIG_MAGIC_NUMBER (uint16_t)0xFEE9  // When changing, decrement this value to avoid future re-init issues
+#    define EECONFIG_MAGIC_NUMBER (uint16_t)0xFEE9 // When changing, decrement this value to avoid future re-init issues
 #endif
 #define EECONFIG_MAGIC_NUMBER_OFF (uint16_t)0xFFFF
 
@@ -112,28 +112,30 @@ void     eeconfig_update_haptic(uint32_t val);
 bool eeconfig_read_handedness(void);
 void eeconfig_update_handedness(bool val);
 
-#define EECONFIG_DEBOUNCE_HELPER(name, offset, config)                     \
-    static uint8_t dirty_##name = false;                                   \
-                                                                           \
-    static inline void eeconfig_init_##name(void) {                        \
-        eeprom_read_block(&config, offset, sizeof(config));                \
-        dirty_##name = false;                                              \
-    }                                                                      \
-    static inline void eeconfig_flush_##name(bool force) {                 \
-        if (force || dirty_##name) {                                       \
-            eeprom_update_block(&config, offset, sizeof(config));          \
-            dirty_##name = false;                                          \
-        }                                                                  \
-    }                                                                      \
-    static inline void eeconfig_flush_##name##_task(uint16_t timeout) {    \
-        static uint16_t flush_timer = 0;                                   \
-        if (timer_elapsed(flush_timer) > timeout) {                        \
-            eeconfig_flush_##name(false);                                  \
-            flush_timer = timer_read();                                    \
-        }                                                                  \
-    }                                                                      \
-    static inline void eeconfig_flag_##name(bool v) { dirty_##name |= v; } \
-    static inline void eeconfig_write_##name(typeof(config) conf) {        \
-        memcpy(&config, &conf, sizeof(config));                            \
-        eeconfig_flag_##name(true);                                        \
+#define EECONFIG_DEBOUNCE_HELPER(name, offset, config)                  \
+    static uint8_t dirty_##name = false;                                \
+                                                                        \
+    static inline void eeconfig_init_##name(void) {                     \
+        eeprom_read_block(&config, offset, sizeof(config));             \
+        dirty_##name = false;                                           \
+    }                                                                   \
+    static inline void eeconfig_flush_##name(bool force) {              \
+        if (force || dirty_##name) {                                    \
+            eeprom_update_block(&config, offset, sizeof(config));       \
+            dirty_##name = false;                                       \
+        }                                                               \
+    }                                                                   \
+    static inline void eeconfig_flush_##name##_task(uint16_t timeout) { \
+        static uint16_t flush_timer = 0;                                \
+        if (timer_elapsed(flush_timer) > timeout) {                     \
+            eeconfig_flush_##name(false);                               \
+            flush_timer = timer_read();                                 \
+        }                                                               \
+    }                                                                   \
+    static inline void eeconfig_flag_##name(bool v) {                   \
+        dirty_##name |= v;                                              \
+    }                                                                   \
+    static inline void eeconfig_write_##name(typeof(config) conf) {     \
+        memcpy(&config, &conf, sizeof(config));                         \
+        eeconfig_flag_##name(true);                                     \
     }