summaryrefslogtreecommitdiffstats
path: root/movement
diff options
context:
space:
mode:
authorjoeycastillo <joeycastillo@utexas.edu>2023-08-17 14:25:33 -0400
committerjoeycastillo <joeycastillo@utexas.edu>2023-08-17 14:35:51 -0400
commitfd2c8c20650c9d2ff332e5da55e0cdd943cf5cc3 (patch)
treed2df4d4fe41d0f2d7f31fb3c853f32b291d2e874 /movement
parent15eeca6b599cd007de6aedf96628e3f169eacdc2 (diff)
downloadSensor-Watch-fd2c8c20650c9d2ff332e5da55e0cdd943cf5cc3.tar.gz
Sensor-Watch-fd2c8c20650c9d2ff332e5da55e0cdd943cf5cc3.tar.bz2
Sensor-Watch-fd2c8c20650c9d2ff332e5da55e0cdd943cf5cc3.zip
add sensor watch lite
Diffstat (limited to 'movement')
-rw-r--r--movement/movement.c4
-rw-r--r--movement/movement_config.h1
2 files changed, 4 insertions, 1 deletions
diff --git a/movement/movement.c b/movement/movement.c
index 40247c65..0a5ac2e4 100644
--- a/movement/movement.c
+++ b/movement/movement.c
@@ -315,7 +315,9 @@ uint8_t movement_claim_backup_register(void) {
}
void app_init(void) {
-#ifdef WATCH_IS_BLUE_BOARD
+#if defined(NO_FREQCORR)
+ watch_rtc_freqcorr_write(0, 0);
+#elif defined(WATCH_IS_BLUE_BOARD)
watch_rtc_freqcorr_write(11, 0);
#else
watch_rtc_freqcorr_write(22, 0);
diff --git a/movement/movement_config.h b/movement/movement_config.h
index b1410a8b..16273983 100644
--- a/movement/movement_config.h
+++ b/movement/movement_config.h
@@ -33,6 +33,7 @@ const watch_face_t watch_faces[] = {
sunrise_sunset_face,
moon_phase_face,
stopwatch_face,
+ thermistor_readout_face,
preferences_face,
set_time_face,
};