[Stylecheck] F0, F1, F4

There are remaining C99 comments.
This commit is contained in:
Frantisek Burian
2014-01-23 19:06:13 +01:00
parent 022cc475bf
commit 3f47411e24
22 changed files with 203 additions and 159 deletions

View File

@@ -35,8 +35,8 @@ static void systick_setup(int freq)
{
systick_set_clocksource(STK_CSR_CLKSOURCE_AHB);
/* clear counter so it starts right away */
STK_CVR=0;
STK_CVR = 0;
systick_set_reload(rcc_core_frequency / freq);
systick_counter_enable();
systick_interrupt_enable();
@@ -79,5 +79,5 @@ int main(void)
systick_setup(8);
/* Do nothing in main loop */
while(1);
while (1);
}