summary refs log tree commit diff
diff options
context:
space:
mode:
authorQMK Bot <hello@qmk.fm>2021-11-17 12:42:00 -0800
committerGitHub <noreply@github.com>2021-11-17 20:42:00 +0000
commit25b087925c8ea88816c4049b7bcbd9dd850f2cef (patch)
tree96e7a370212e7b8c8935d6617c8d9c555042f9ca
parent45f4f446fb8473008252756e45023fc11bfe1472 (diff)
Format code according to conventions (#15195)
-rw-r--r--quantum/process_keycode/process_auto_shift.c10
-rw-r--r--quantum/rgb_matrix/animations/pixel_rain_anim.h18
2 files changed, 16 insertions, 12 deletions
diff --git a/quantum/process_keycode/process_auto_shift.c b/quantum/process_keycode/process_auto_shift.c
index 02af5174f7..4d928edb57 100644
--- a/quantum/process_keycode/process_auto_shift.c
+++ b/quantum/process_keycode/process_auto_shift.c
@@ -21,11 +21,11 @@
 
 #    include "process_auto_shift.h"
 
-#ifndef AUTO_SHIFT_DISABLED_AT_STARTUP
-#   define AUTO_SHIFT_STARTUP_STATE true    /* enabled */
-#else
-#   define AUTO_SHIFT_STARTUP_STATE false   /* disabled */
-#endif
+#    ifndef AUTO_SHIFT_DISABLED_AT_STARTUP
+#        define AUTO_SHIFT_STARTUP_STATE true /* enabled */
+#    else
+#        define AUTO_SHIFT_STARTUP_STATE false /* disabled */
+#    endif
 
 static uint16_t autoshift_time    = 0;
 static uint16_t autoshift_timeout = AUTO_SHIFT_TIMEOUT;
diff --git a/quantum/rgb_matrix/animations/pixel_rain_anim.h b/quantum/rgb_matrix/animations/pixel_rain_anim.h
index 0209d33033..001649aa6e 100644
--- a/quantum/rgb_matrix/animations/pixel_rain_anim.h
+++ b/quantum/rgb_matrix/animations/pixel_rain_anim.h
@@ -16,18 +16,22 @@
 
 #ifdef ENABLE_RGB_MATRIX_PIXEL_RAIN
 RGB_MATRIX_EFFECT(PIXEL_RAIN)
-#   ifdef RGB_MATRIX_CUSTOM_EFFECT_IMPLS
+#    ifdef RGB_MATRIX_CUSTOM_EFFECT_IMPLS
 
 static bool PIXEL_RAIN(effect_params_t* params) {
     static uint32_t wait_timer = 0;
-    if (wait_timer > g_rgb_timer) { return false; }
+    if (wait_timer > g_rgb_timer) {
+        return false;
+    }
 
     inline uint32_t interval(void) { return 500 / scale16by8(qadd8(rgb_matrix_config.speed, 16), 16); }
 
-    bool rain_pixel(uint8_t i, effect_params_t* params, bool off) {
-        if (!HAS_ANY_FLAGS(g_led_config.flags[i], params->flags)) { return true; }
+    bool rain_pixel(uint8_t i, effect_params_t * params, bool off) {
+        if (!HAS_ANY_FLAGS(g_led_config.flags[i], params->flags)) {
+            return true;
+        }
         if (off) {
-            rgb_matrix_set_color(i, 0,0,0);
+            rgb_matrix_set_color(i, 0, 0, 0);
         } else {
             HSV hsv = {random8(), qadd8(random8() >> 1, 127), rgb_matrix_config.hsv.v};
             RGB rgb = rgb_matrix_hsv_to_rgb(hsv);
@@ -40,5 +44,5 @@ static bool PIXEL_RAIN(effect_params_t* params) {
     return rain_pixel(mod8(random8(), DRIVER_LED_TOTAL), params, random8() & 2);
 }
 
-#   endif // RGB_MATRIX_CUSTOM_EFFECT_IMPLS
-#endif    // ENABLE_RGB_MATRIX_PIXEL_RAIN
+#    endif  // RGB_MATRIX_CUSTOM_EFFECT_IMPLS
+#endif      // ENABLE_RGB_MATRIX_PIXEL_RAIN