1
0
Fork 0

Fix print and timer

This commit is contained in:
tmk 2014-06-16 15:38:39 +09:00
parent 867f115bee
commit 04fe78ee0a
9 changed files with 60 additions and 17 deletions

View file

@ -11,6 +11,7 @@ void SysTick_Handler(void) {
void timer_init(void)
{
timer_count = 0;
SysTick_Config(SystemCoreClock / 1000); /* 1ms tick */
}