1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-12-25 06:23:53 +01:00

sys/compat/hwtimer: fix unused fcpu warning

This commit is contained in:
Ludwig Ortmann 2015-05-16 14:16:32 +02:00
parent 2bc7c4ba5f
commit 6d0a8b222b

View File

@ -35,6 +35,8 @@ void (*timeout_handler)(int);
void hwtimer_arch_init(void (*handler)(int), uint32_t fcpu)
{
(void) fcpu;
timeout_handler = handler;
timer_init(HW_TIMER, 1, &irq_handler);
}