forked from mirrors/qmk_userspace
		
	Format code according to conventions (#15195)
This commit is contained in:
		
					parent
					
						
							
								45f4f446fb
							
						
					
				
			
			
				commit
				
					
						25b087925c
					
				
			
		
					 2 changed files with 16 additions and 12 deletions
				
			
		| 
						 | 
					@ -21,11 +21,11 @@
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#    include "process_auto_shift.h"
 | 
					#    include "process_auto_shift.h"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#ifndef AUTO_SHIFT_DISABLED_AT_STARTUP
 | 
					#    ifndef AUTO_SHIFT_DISABLED_AT_STARTUP
 | 
				
			||||||
#        define AUTO_SHIFT_STARTUP_STATE true /* enabled */
 | 
					#        define AUTO_SHIFT_STARTUP_STATE true /* enabled */
 | 
				
			||||||
#else
 | 
					#    else
 | 
				
			||||||
#        define AUTO_SHIFT_STARTUP_STATE false /* disabled */
 | 
					#        define AUTO_SHIFT_STARTUP_STATE false /* disabled */
 | 
				
			||||||
#endif
 | 
					#    endif
 | 
				
			||||||
 | 
					
 | 
				
			||||||
static uint16_t autoshift_time    = 0;
 | 
					static uint16_t autoshift_time    = 0;
 | 
				
			||||||
static uint16_t autoshift_timeout = AUTO_SHIFT_TIMEOUT;
 | 
					static uint16_t autoshift_timeout = AUTO_SHIFT_TIMEOUT;
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -20,14 +20,18 @@ RGB_MATRIX_EFFECT(PIXEL_RAIN)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
static bool PIXEL_RAIN(effect_params_t* params) {
 | 
					static bool PIXEL_RAIN(effect_params_t* params) {
 | 
				
			||||||
    static uint32_t wait_timer = 0;
 | 
					    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); }
 | 
					    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) {
 | 
					    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 (!HAS_ANY_FLAGS(g_led_config.flags[i], params->flags)) {
 | 
				
			||||||
 | 
					            return true;
 | 
				
			||||||
 | 
					        }
 | 
				
			||||||
        if (off) {
 | 
					        if (off) {
 | 
				
			||||||
            rgb_matrix_set_color(i, 0,0,0);
 | 
					            rgb_matrix_set_color(i, 0, 0, 0);
 | 
				
			||||||
        } else {
 | 
					        } else {
 | 
				
			||||||
            HSV hsv = {random8(), qadd8(random8() >> 1, 127), rgb_matrix_config.hsv.v};
 | 
					            HSV hsv = {random8(), qadd8(random8() >> 1, 127), rgb_matrix_config.hsv.v};
 | 
				
			||||||
            RGB rgb = rgb_matrix_hsv_to_rgb(hsv);
 | 
					            RGB rgb = rgb_matrix_hsv_to_rgb(hsv);
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue