mirror of
https://github.com/Keychron/qmk_firmware.git
synced 2024-11-22 08:27:56 +06:00
Format code according to conventions (#15196)
This commit is contained in:
parent
e0a5056963
commit
cc7600cf0e
|
@ -385,12 +385,9 @@ ISR(TIMERx_OVF_vect)
|
|||
{
|
||||
|
||||
// Only run this ISR at ~120 Hz
|
||||
if(breath_scale_counter++ == breathing_freq_scale_factor)
|
||||
{
|
||||
if (breath_scale_counter++ == breathing_freq_scale_factor) {
|
||||
breath_scale_counter = 1;
|
||||
}
|
||||
else
|
||||
{
|
||||
} else {
|
||||
return;
|
||||
}
|
||||
uint16_t interval = (uint16_t)breathing_period * breathing_ISR_frequency / BREATHING_STEPS;
|
||||
|
@ -435,9 +432,9 @@ void backlight_init_ports(void) {
|
|||
*/
|
||||
TCCRxA = _BV(COMxx1) | _BV(WGM11); // = 0b00001010;
|
||||
TCCRxB = _BV(WGM13) | _BV(WGM12) | _BV(CS10); // = 0b00011001;
|
||||
# endif
|
||||
#endif
|
||||
|
||||
# ifdef BACKLIGHT_CUSTOM_RESOLUTION
|
||||
#ifdef BACKLIGHT_CUSTOM_RESOLUTION
|
||||
# if (BACKLIGHT_CUSTOM_RESOLUTION > 0xFFFF || BACKLIGHT_CUSTOM_RESOLUTION < 1)
|
||||
# error "This out of range of the timer capabilities"
|
||||
# elif (BACKLIGHT_CUSTOM_RESOLUTION < 0xFF)
|
||||
|
@ -447,9 +444,9 @@ void backlight_init_ports(void) {
|
|||
breathing_freq_scale_factor = F_CPU / BACKLIGHT_CUSTOM_RESOLUTION / 120;
|
||||
# endif
|
||||
ICRx = BACKLIGHT_CUSTOM_RESOLUTION;
|
||||
# else
|
||||
#else
|
||||
ICRx = TIMER_TOP;
|
||||
# endif
|
||||
#endif
|
||||
|
||||
backlight_init();
|
||||
#ifdef BACKLIGHT_BREATHING
|
||||
|
|
Loading…
Reference in New Issue
Block a user