Code cosmetics, added missing void statement to empty parameter of

functions
This commit is contained in:
Jan A
2019-09-30 19:01:10 +02:00
committed by Conor Patrick
parent 208d26be89
commit 5168afa16e
12 changed files with 67 additions and 56 deletions

View File

@ -57,10 +57,11 @@ void TIM6_DAC_IRQHandler()
__90_ms += 1;
}
uint32_t millis()
uint32_t millis(void)
{
return (((uint32_t)TIM6->CNT) + (__90_ms * 90));
}
void _Error_Handler(char *file, int line)
{
while(1)