diff options
Diffstat (limited to 'wirish/wirish.c')
-rw-r--r-- | wirish/wirish.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/wirish/wirish.c b/wirish/wirish.c index 520079c..e21f792 100644 --- a/wirish/wirish.c +++ b/wirish/wirish.c @@ -31,17 +31,17 @@ #include "systick.h" #include "gpio.h" #include "nvic.h" -//#include "usb.h" +#include "usb.h" void init(void) { rcc_init(); nvic_init(); -// systick_init(); + systick_init(); gpio_init(); adc_init(); timer_init(1, 1); timer_init(2, 1); timer_init(3, 1); timer_init(4, 1); - //setupUSB(); + setupUSB(); } |