refactor: watch faces no longer need a pointer to settings!
This commit is contained in:
@@ -44,10 +44,10 @@ typedef struct {
|
||||
} counter_state_t;
|
||||
|
||||
|
||||
void counter_face_setup(movement_settings_t *settings, uint8_t watch_face_index, void ** context_ptr);
|
||||
void counter_face_activate(movement_settings_t *settings, void *context);
|
||||
bool counter_face_loop(movement_event_t event, movement_settings_t *settings, void *context);
|
||||
void counter_face_resign(movement_settings_t *settings, void *context);
|
||||
void counter_face_setup(uint8_t watch_face_index, void ** context_ptr);
|
||||
void counter_face_activate(void *context);
|
||||
bool counter_face_loop(movement_event_t event, void *context);
|
||||
void counter_face_resign(void *context);
|
||||
|
||||
void print_counter(counter_state_t *state);
|
||||
void beep_counter(counter_state_t *state);
|
||||
|
||||
Reference in New Issue
Block a user