Systick: Correct comments

This commit is contained in:
Mario Hüttel 2021-03-18 22:53:11 +01:00
parent dca696cd6a
commit 1797dac60b
1 changed files with 2 additions and 2 deletions

View File

@ -31,7 +31,7 @@
/**
* @brief Reload value for the systick timer.
*
* This value has to be configured to set the systick to a one milliscond tick interval
* This value has to be configured to set the systick to a 100 us tick interval
* The default value is 16800, which results in a 100us tick for 168 MHz CPU speed
*/
#define SYSTICK_RELOAD (16800UL)
@ -55,7 +55,7 @@ extern volatile uint64_t global_tick_ms;
extern volatile uint32_t lcd_tick_100us;
/**
* @brief Setup the Systick timer to generate a 1 ms tick
* @brief Setup the Systick timer to generate a 100 us tick
*/
void systick_setup(void);