Format code according to conventions (#15196)

miryoku-merge-master
QMK Bot 4 years ago committed by GitHub
parent e0a5056963
commit cc7600cf0e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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

Loading…
Cancel
Save