diff options
author | Joey Castillo <joeycastillo@utexas.edu> | 2022-02-11 12:22:11 -0500 |
---|---|---|
committer | Joey Castillo <joeycastillo@utexas.edu> | 2022-02-11 12:22:11 -0500 |
commit | 5dac14974c9b2d00431430e9f24dd7e26f69246f (patch) | |
tree | 64fc0cad2a7f4be0a7dd9745cecee40c3b7f2667 /watch-library/shared | |
parent | 74f8747764a23f905a86f70ee97ae4c3b83526a9 (diff) | |
download | Sensor-Watch-5dac14974c9b2d00431430e9f24dd7e26f69246f.tar.gz Sensor-Watch-5dac14974c9b2d00431430e9f24dd7e26f69246f.tar.bz2 Sensor-Watch-5dac14974c9b2d00431430e9f24dd7e26f69246f.zip |
osc32kctrl: implement CONF_SLCDCTRL_SRC setting
Diffstat (limited to 'watch-library/shared')
-rw-r--r-- | watch-library/shared/config/hpl_osc32kctrl_config.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/watch-library/shared/config/hpl_osc32kctrl_config.h b/watch-library/shared/config/hpl_osc32kctrl_config.h index 540f1c60..a77800e9 100644 --- a/watch-library/shared/config/hpl_osc32kctrl_config.h +++ b/watch-library/shared/config/hpl_osc32kctrl_config.h @@ -50,12 +50,12 @@ // <h> SLCD source control // <y> SLCD Clock Source Selection -// <GCLK_GENCTRL_SRC_OSCULP32K"> 32kHz Ultra Low Power Internal Oscillator (OSCULP32K) -// <GCLK_GENCTRL_SRC_XOSC32K"> 32kHz External Crystal Oscillator (XOSC32K) +// <0> 32kHz Ultra Low Power Internal Oscillator (OSCULP32K) +// <1> 32kHz External Crystal Oscillator (XOSC32K) // <i> This defines the clock source for SLCD // <id> slcd_source_oscillator #ifndef CONF_SLCDCTRL_SRC -#define CONF_SLCDCTRL_SRC GCLK_GENCTRL_SRC_XOSC32K +#define CONF_SLCDCTRL_SRC 0 #endif // </h> |