mars clock: add support for sols

This commit is contained in:
Joey Castillo
2022-03-05 09:59:32 -05:00
parent 08af2ed398
commit 3ad093715d
2 changed files with 39 additions and 14 deletions

View File

@@ -29,15 +29,16 @@
typedef enum {
MARS_TIME_MERIDIAN,
MARS_TIME_CURIOSITY_SITE,
MARS_TIME_INSIGHT_SITE,
MARS_TIME_PERSEVERANCE_SITE,
MARS_TIME_ZHURONG_SITE,
MARS_TIME_PERSEVERANCE_SITE,
MARS_TIME_INSIGHT_SITE,
MARS_TIME_CURIOSITY_SITE,
MARS_TIME_NUM_SITES,
} mars_time_site_t;
typedef struct {
mars_time_site_t current_site;
bool displaying_sol;
} mars_time_state_t;
void mars_time_face_setup(movement_settings_t *settings, uint8_t watch_face_index, void ** context_ptr);