1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-12-25 14:33:52 +01:00

cpu/atmega_common: fix compile problem with NDEBUG

This commit is contained in:
Gunar Schorcht 2020-02-24 18:23:34 +01:00
parent defdf1e6f5
commit da244ffcaa

View File

@ -206,6 +206,7 @@ static inline uint8_t _rtt_div(uint16_t freq)
case 128: return 0x6;
case 32: return 0x7;
default : assert(0);
return 0;
}
}