[CI] Format code according to conventions (#12731)
Co-authored-by: QMK Bot <hello@qmk.fm>
This commit is contained in:
parent
d8167779cd
commit
39bc8163d0
4 changed files with 14 additions and 16 deletions
|
@ -324,8 +324,7 @@ void led_matrix_task(void) {
|
|||
|
||||
// Ideally we would also stop sending zeros to the LED driver PWM buffers
|
||||
// while suspended and just do a software shutdown. This is a cheap hack for now.
|
||||
bool suspend_backlight =
|
||||
suspend_state ||
|
||||
bool suspend_backlight = suspend_state ||
|
||||
#if LED_DISABLE_TIMEOUT > 0
|
||||
(led_anykey_timer > (uint32_t)LED_DISABLE_TIMEOUT) ||
|
||||
#endif // LED_DISABLE_TIMEOUT > 0
|
||||
|
|
|
@ -409,8 +409,7 @@ void rgb_matrix_task(void) {
|
|||
|
||||
// Ideally we would also stop sending zeros to the LED driver PWM buffers
|
||||
// while suspended and just do a software shutdown. This is a cheap hack for now.
|
||||
bool suspend_backlight =
|
||||
suspend_state ||
|
||||
bool suspend_backlight = suspend_state ||
|
||||
#if RGB_DISABLE_TIMEOUT > 0
|
||||
(rgb_anykey_timer > (uint32_t)RGB_DISABLE_TIMEOUT) ||
|
||||
#endif // RGB_DISABLE_TIMEOUT > 0
|
||||
|
|
Loading…
Reference in a new issue