mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
6233175f16
The calculation of `_state_index` is broken for `port = 2` _gpio_isr_map[n + (port<<1)]; Will not yield the right result. As a consequence, IRQs on Port 2 are not working. The right thing here would be _gpio_isr_map[n + (port ? 32 : 0)]; But we might just re-using the `_isr_map_entry()` function. Also only iterate as many times as there are set interrupt bits. |
||
---|---|---|
.. | ||
adc.c | ||
dac.c | ||
gpio.c | ||
i2c.c | ||
Makefile | ||
pm.c | ||
pwm.c | ||
rtc.c | ||
spi.c | ||
timer.c | ||
uart.c |