diff options
author | Joey Castillo <joeycastillo@utexas.edu> | 2021-12-05 23:49:26 -0600 |
---|---|---|
committer | Joey Castillo <joeycastillo@utexas.edu> | 2021-12-05 23:49:26 -0600 |
commit | e202c48b0a1a9838e91d020ca2b71214119b3c3d (patch) | |
tree | adb63f4f22179d5d28599a6902ba6a91f52c5deb /movement/movement.h | |
parent | ed94efcb8559d21820e8a06214e95191eed4c9b3 (diff) | |
download | Sensor-Watch-e202c48b0a1a9838e91d020ca2b71214119b3c3d.tar.gz Sensor-Watch-e202c48b0a1a9838e91d020ca2b71214119b3c3d.tar.bz2 Sensor-Watch-e202c48b0a1a9838e91d020ca2b71214119b3c3d.zip |
fix missing prototype warnings
Diffstat (limited to 'movement/movement.h')
-rw-r--r-- | movement/movement.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/movement/movement.h b/movement/movement.h index 9edb285b..62e4120b 100644 --- a/movement/movement.h +++ b/movement/movement.h @@ -242,11 +242,11 @@ typedef struct { } movement_state_t; void movement_move_to_face(uint8_t watch_face_index); -void movement_move_to_next_face(); -void movement_illuminate_led(); +void movement_move_to_next_face(void); +void movement_illuminate_led(void); void movement_request_tick_frequency(uint8_t freq); -void movement_play_signal(); -void movement_play_alarm(); +void movement_play_signal(void); +void movement_play_alarm(void); #endif // MOVEMENT_H_ |