summaryrefslogtreecommitdiffstats
path: root/movement/watch_faces/settings/preferences_face.c
diff options
context:
space:
mode:
authorJoey Castillo <jose.castillo@gmail.com>2021-10-16 13:23:23 -0400
committerJoey Castillo <jose.castillo@gmail.com>2021-10-16 13:26:23 -0400
commitd36331ce4e79d275e0ef09414a1a1a1a8949b0ea (patch)
treeed5f5fe596ca4b815fe2c58c00d5bf9ebb88c540 /movement/watch_faces/settings/preferences_face.c
parentd5ac4cb71b4e328a27e26843cfdc6719b152ac7d (diff)
downloadSensor-Watch-d36331ce4e79d275e0ef09414a1a1a1a8949b0ea.tar.gz
Sensor-Watch-d36331ce4e79d275e0ef09414a1a1a1a8949b0ea.tar.bz2
Sensor-Watch-d36331ce4e79d275e0ef09414a1a1a1a8949b0ea.zip
rename types to be more c-like
Diffstat (limited to 'movement/watch_faces/settings/preferences_face.c')
-rw-r--r--movement/watch_faces/settings/preferences_face.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/movement/watch_faces/settings/preferences_face.c b/movement/watch_faces/settings/preferences_face.c
index f499e36f..18dff6cd 100644
--- a/movement/watch_faces/settings/preferences_face.c
+++ b/movement/watch_faces/settings/preferences_face.c
@@ -5,18 +5,18 @@
#define PREFERENCES_FACE_NUM_PREFEFENCES (5)
const char preferences_face_titles[PREFERENCES_FACE_NUM_PREFEFENCES][11] = {"CL ", "Bt Beep ", "SC ", "Lt grn ", "Lt red "};
-void preferences_face_setup(LauncherSettings *settings, void ** context_ptr) {
+void preferences_face_setup(movement_settings_t *settings, void ** context_ptr) {
(void) settings;
if (*context_ptr == NULL) *context_ptr = malloc(sizeof(uint8_t));
}
-void preferences_face_activate(LauncherSettings *settings, void *context) {
+void preferences_face_activate(movement_settings_t *settings, void *context) {
(void) settings;
*((uint8_t *)context) = 0;
movement_request_tick_frequency(4); // we need to manually blink some pixels
}
-bool preferences_face_loop(LauncherEvent event, LauncherSettings *settings, void *context) {
+bool preferences_face_loop(movement_event_t event, movement_settings_t *settings, void *context) {
printf("preferences_face_loop\n");
uint8_t current_page = *((uint8_t *)context);
switch (event.event_type) {
@@ -112,7 +112,7 @@ bool preferences_face_loop(LauncherEvent event, LauncherSettings *settings, void
return true;
}
-void preferences_face_resign(LauncherSettings *settings, void *context) {
+void preferences_face_resign(movement_settings_t *settings, void *context) {
(void) settings;
(void) context;
watch_set_led_off();