forked from mirrors/qmk_userspace
		
	Run clang-format manually to fix recently changed files (#8552)
This commit is contained in:
		
					parent
					
						
							
								5075a1d9e4
							
						
					
				
			
			
				commit
				
					
						6ceaae30f5
					
				
			
		
					 6 changed files with 39 additions and 43 deletions
				
			
		| 
						 | 
					@ -111,7 +111,6 @@ const point_t k_rgb_matrix_center = RGB_MATRIX_CENTER;
 | 
				
			||||||
#    define RGB_MATRIX_STARTUP_SPD UINT8_MAX / 2
 | 
					#    define RGB_MATRIX_STARTUP_SPD UINT8_MAX / 2
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					 | 
				
			||||||
bool g_suspend_state = false;
 | 
					bool g_suspend_state = false;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
rgb_config_t rgb_matrix_config;
 | 
					rgb_config_t rgb_matrix_config;
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -34,7 +34,6 @@ bool wpm_keycode(uint16_t keycode) { return wpm_keycode_kb(keycode); }
 | 
				
			||||||
__attribute__((weak)) bool wpm_keycode_kb(uint16_t keycode) { return wpm_keycode_user(keycode); }
 | 
					__attribute__((weak)) bool wpm_keycode_kb(uint16_t keycode) { return wpm_keycode_user(keycode); }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
__attribute__((weak)) bool wpm_keycode_user(uint16_t keycode) {
 | 
					__attribute__((weak)) bool wpm_keycode_user(uint16_t keycode) {
 | 
				
			||||||
 | 
					 | 
				
			||||||
    if ((keycode >= QK_MOD_TAP && keycode <= QK_MOD_TAP_MAX) || (keycode >= QK_LAYER_TAP && keycode <= QK_LAYER_TAP_MAX) || (keycode >= QK_MODS && keycode <= QK_MODS_MAX)) {
 | 
					    if ((keycode >= QK_MOD_TAP && keycode <= QK_MOD_TAP_MAX) || (keycode >= QK_LAYER_TAP && keycode <= QK_LAYER_TAP_MAX) || (keycode >= QK_MODS && keycode <= QK_MODS_MAX)) {
 | 
				
			||||||
        keycode = keycode & 0xFF;
 | 
					        keycode = keycode & 0xFF;
 | 
				
			||||||
    } else if (keycode > 0xFF) {
 | 
					    } else if (keycode > 0xFF) {
 | 
				
			||||||
| 
						 | 
					@ -47,7 +46,6 @@ __attribute__((weak)) bool wpm_keycode_user(uint16_t keycode) {
 | 
				
			||||||
    return false;
 | 
					    return false;
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					 | 
				
			||||||
void update_wpm(uint16_t keycode) {
 | 
					void update_wpm(uint16_t keycode) {
 | 
				
			||||||
    if (wpm_keycode(keycode)) {
 | 
					    if (wpm_keycode(keycode)) {
 | 
				
			||||||
        if (wpm_timer > 0) {
 | 
					        if (wpm_timer > 0) {
 | 
				
			||||||
| 
						 | 
					@ -60,8 +58,7 @@ void update_wpm(uint16_t keycode) {
 | 
				
			||||||
 | 
					
 | 
				
			||||||
void decay_wpm(void) {
 | 
					void decay_wpm(void) {
 | 
				
			||||||
    if (timer_elapsed(wpm_timer) > 1000) {
 | 
					    if (timer_elapsed(wpm_timer) > 1000) {
 | 
				
			||||||
	current_wpm = (0 - current_wpm) * wpm_smoothing +
 | 
					        current_wpm = (0 - current_wpm) * wpm_smoothing + current_wpm;
 | 
				
			||||||
		current_wpm;
 | 
					 | 
				
			||||||
        wpm_timer   = timer_read();
 | 
					        wpm_timer   = timer_read();
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue