From e7d28453f94516f9beadd1413259757da03f8a17 Mon Sep 17 00:00:00 2001 From: Paul van Tilburg Date: Wed, 6 Mar 2019 23:14:39 +0100 Subject: [PATCH] Use TIM2 as the timer interrupt (for the switch_leds task) --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index e21d622..b575a5d 100644 --- a/src/main.rs +++ b/src/main.rs @@ -84,6 +84,6 @@ const APP: () = { } extern "C" { - fn UART4(); + fn TIM2(); } };