diff options
author | Andrew Kannan <andrew.kannan@klaviyo.com> | 2018-11-13 01:03:48 -0500 |
---|---|---|
committer | Drashna Jaelre <drashna@live.com> | 2018-11-12 22:03:48 -0800 |
commit | 709bf386f4429687a8ec73ebd29193e5f209461b (patch) | |
tree | 1c3aa25ade3f2ff495c0872738f079f010ccb6ce /keyboards/handwired/practice60/chconf.h | |
parent | 9b28dc84889357b9097ece2557c926ffa12a8479 (diff) |
Update Practice60 to use MT feature and revise system ticks (#4413)
* Update Practice60 to use MT feature and revise system tics
* Increase system tick frequency
10,000 instead of 10,000
Diffstat (limited to 'keyboards/handwired/practice60/chconf.h')
-rw-r--r-- | keyboards/handwired/practice60/chconf.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/keyboards/handwired/practice60/chconf.h b/keyboards/handwired/practice60/chconf.h index dfb1f9dfb9..bbd9b2da62 100644 --- a/keyboards/handwired/practice60/chconf.h +++ b/keyboards/handwired/practice60/chconf.h @@ -41,14 +41,14 @@ * @brief System time counter resolution. * @note Allowed values are 16 or 32 bits. */ -#define CH_CFG_ST_RESOLUTION 16 +#define CH_CFG_ST_RESOLUTION 32 /** * @brief System tick frequency. * @details Frequency of the system timer that drives the system ticks. This * setting also defines the system tick time unit. */ -#define CH_CFG_ST_FREQUENCY 2000 +#define CH_CFG_ST_FREQUENCY 100000 /** * @brief Time delta constant for the tick-less mode. @@ -58,7 +58,7 @@ * The value one is not valid, timeouts are rounded up to * this value. */ -#define CH_CFG_ST_TIMEDELTA 2 +#define CH_CFG_ST_TIMEDELTA 0 /** @} */ |