diff options
author | Joey Castillo <joeycastillo@utexas.edu> | 2022-10-09 22:58:42 -0500 |
---|---|---|
committer | Joey Castillo <joeycastillo@utexas.edu> | 2022-10-09 22:58:42 -0500 |
commit | 95f2f25ee68d2c7bd1f55f74d425153a9aa4d36d (patch) | |
tree | 80d1a78dfdca604dd94ed3dca749d1b7780aeeff /movement | |
parent | 48160e8a47ad3c933a4ad06d55d47bc382421822 (diff) | |
download | Sensor-Watch-95f2f25ee68d2c7bd1f55f74d425153a9aa4d36d.tar.gz Sensor-Watch-95f2f25ee68d2c7bd1f55f74d425153a9aa4d36d.tar.bz2 Sensor-Watch-95f2f25ee68d2c7bd1f55f74d425153a9aa4d36d.zip |
implement stubs to make simulator build happy
Diffstat (limited to 'movement')
-rw-r--r-- | movement/watch_faces/demo/frequency_correction_face.c | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/movement/watch_faces/demo/frequency_correction_face.c b/movement/watch_faces/demo/frequency_correction_face.c index 99601735..a46f192a 100644 --- a/movement/watch_faces/demo/frequency_correction_face.c +++ b/movement/watch_faces/demo/frequency_correction_face.c @@ -139,4 +139,30 @@ void frequency_correction_face_resign(movement_settings_t *settings, void *conte _disable_output(); } +#else + +void frequency_correction_face_setup(movement_settings_t *settings, uint8_t watch_face_index, void ** context_ptr) { + (void) settings; + (void) watch_face_index; + (void) context_ptr; +} + +void frequency_correction_face_activate(movement_settings_t *settings, void *context) { + (void) settings; + (void) context; +} + +bool frequency_correction_face_loop(movement_event_t event, movement_settings_t *settings, void *context) { + (void) settings; + (void) context; + (void) event; + + return true; +} + +void frequency_correction_face_resign(movement_settings_t *settings, void *context) { + (void) settings; + (void) context; +} + #endif |