Skip to content
Snippets Groups Projects
Commit d59e01e1 authored by Kaspar Schleiser's avatar Kaspar Schleiser
Browse files

Merge pull request #3001 from LudwigOrtmann/pr/hwtimer_compat_fcpu

sys/compat/hwtimer: fix unused fcpu warning
parents 2bc7c4ba 6d0a8b22
No related branches found
No related tags found
No related merge requests found
......@@ -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);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment