1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

cpu/stm32/periph/timer: fix whitespace style

This commit is contained in:
Joshua DeWeese 2024-11-19 21:50:23 -05:00
parent 4e357d410c
commit f24fc69118

View File

@ -50,7 +50,6 @@ static unsigned channel_numof(tim_t tim)
return TIMER_CHANNEL_NUMOF;
}
#ifdef MODULE_PERIPH_TIMER_PERIODIC
/**
@ -238,7 +237,7 @@ int timer_set_periodic(tim_t tim, int channel, unsigned int value, uint8_t flags
dev(tim)->CNT = 0;
/* wait for the interrupt & clear it */
while(dev(tim)->SR == 0) {}
while (dev(tim)->SR == 0) {}
dev(tim)->SR = 0;
}