summaryrefslogtreecommitdiffstats
path: root/movement/template/template.c
diff options
context:
space:
mode:
authorjoeycastillo <joeycastillo@utexas.edu>2022-01-26 20:29:27 -0500
committerGitHub <noreply@github.com>2022-01-26 20:29:27 -0500
commit97da35da26e47c5ca5b195dcf534a4eaf49c896c (patch)
tree1a97c9f9ef14da821fc9a1901c355a1b69b2eae8 /movement/template/template.c
parent725f17bfb60e402dc0efc2e58cdcfc592ed5ff45 (diff)
parentc130f13bb802c91d65c7ad96a49976678e76ac2b (diff)
downloadSensor-Watch-97da35da26e47c5ca5b195dcf534a4eaf49c896c.tar.gz
Sensor-Watch-97da35da26e47c5ca5b195dcf534a4eaf49c896c.tar.bz2
Sensor-Watch-97da35da26e47c5ca5b195dcf534a4eaf49c896c.zip
Merge pull request #47 from davidskeck/main
Added rough draft of watch_face script
Diffstat (limited to 'movement/template/template.c')
-rw-r--r--movement/template/template.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/movement/template/template.c b/movement/template/template.c
index 3f60be97..c9c174b6 100644
--- a/movement/template/template.c
+++ b/movement/template/template.c
@@ -22,13 +22,15 @@
* SOFTWARE.
*/
+#include <stdlib.h>
+#include <string.h>
#include "<#watch_face_name#>_face.h"
void <#watch_face_name#>_face_setup(movement_settings_t *settings, uint8_t watch_face_index, void ** context_ptr) {
(void) settings;
if (*context_ptr == NULL) {
*context_ptr = malloc(sizeof(<#watch_face_name#>_state_t));
- memset(*context_ptr, 0, sizeof(<#watch_face_name#>));
+ memset(*context_ptr, 0, sizeof(<#watch_face_name#>_state_t));
// Do any one-time tasks in here; the inside of this conditional happens only at boot.
}
// Do any pin or peripheral setup here; this will be called whenever the watch wakes from deep sleep.
@@ -76,7 +78,7 @@ bool <#watch_face_name#>_face_loop(movement_event_t event, movement_settings_t *
break;
}
- // return true if the watch can enter standby mode. If you are PWM'ing an LED or buzzing the buzzer nere,
+ // return true if the watch can enter standby mode. If you are PWM'ing an LED or buzzing the buzzer here,
// you should return false since the PWM driver does not operate in standby mode.
return true;
}
@@ -87,3 +89,4 @@ void <#watch_face_name#>_face_resign(movement_settings_t *settings, void *contex
// handle any cleanup before your watch face goes off-screen.
}
+