Format code according to conventions (#15196)

master
QMK Bot 2021-11-17 13:07:45 -08:00 committed by GitHub
parent e0a5056963
commit cc7600cf0e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 26 additions and 29 deletions

View File

@ -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;