summaryrefslogtreecommitdiffstats
path: root/movement/movement.h
diff options
context:
space:
mode:
authorjoeycastillo <joeycastillo@utexas.edu>2022-10-22 13:22:46 -0500
committerGitHub <noreply@github.com>2022-10-22 13:22:46 -0500
commitf8f0ce479d94f445c98fe9ec8a5de7ab6fb3c67a (patch)
treec3eb9d6e8698d626faef89336ef785e60b3fe73d /movement/movement.h
parentdfb928b9d6d1cf62d09c48f54b57d3e6fc970245 (diff)
parentb56c60868e84d729a4fd76ff5739a08b87153728 (diff)
downloadSensor-Watch-f8f0ce479d94f445c98fe9ec8a5de7ab6fb3c67a.tar.gz
Sensor-Watch-f8f0ce479d94f445c98fe9ec8a5de7ab6fb3c67a.tar.bz2
Sensor-Watch-f8f0ce479d94f445c98fe9ec8a5de7ab6fb3c67a.zip
Merge pull request #105 from niclashoyer/fix_schedule
Fix scheduled tasks scheduling another task
Diffstat (limited to 'movement/movement.h')
-rw-r--r--movement/movement.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/movement/movement.h b/movement/movement.h
index a013a861..79222e8c 100644
--- a/movement/movement.h
+++ b/movement/movement.h
@@ -292,6 +292,10 @@ void movement_schedule_background_task(watch_date_time date_time);
// movement will associate the scheduled task with the currently active face.
void movement_cancel_background_task(void);
+// these functions should work around the limitation of the above functions, which will be deprecated.
+void movement_schedule_background_task_for_face(uint8_t watch_face_index, watch_date_time date_time);
+void movement_cancel_background_task_for_face(uint8_t watch_face_index);
+
void movement_request_wake(void);
void movement_play_signal(void);