1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-12-30 08:51:19 +01:00

cpu: stm32: use unsigned as loop counter

This commit is contained in:
Oleg Hahm 2017-01-06 14:33:04 +01:00
parent 1c8ea7eab2
commit 3485026a48

View File

@ -131,7 +131,7 @@ static inline void irq_handler(tim_t tim)
{
uint32_t status = (dev(tim)->SR & dev(tim)->DIER);
for (uint8_t i = 0; i < TIMER_CHAN; i++) {
for (unsigned int i = 0; i < TIMER_CHAN; i++) {
if (status & (TIM_SR_CC1IF << i)) {
dev(tim)->DIER &= ~(TIM_DIER_CC1IE << i);
isr_ctx[tim].cb(isr_ctx[tim].arg, i);