diff options
author | Wesley Aptekar-Cassels <me@wesleyac.com> | 2023-11-13 00:48:57 -0500 |
---|---|---|
committer | Wesley Aptekar-Cassels <me@wesleyac.com> | 2024-01-09 16:22:21 -0500 |
commit | e9fe4aeefe7e56d637f7fbf35772f5bb37aff911 (patch) | |
tree | fc47972b343973aab5f8ce57be77a31a1c921d10 /movement/movement_config.h | |
parent | 3ee32c6e57e9a741355251f33fbcc323ded249d8 (diff) | |
download | Sensor-Watch-e9fe4aeefe7e56d637f7fbf35772f5bb37aff911.tar.gz Sensor-Watch-e9fe4aeefe7e56d637f7fbf35772f5bb37aff911.tar.bz2 Sensor-Watch-e9fe4aeefe7e56d637f7fbf35772f5bb37aff911.zip |
Enable custom signal tones in LE mode.
This makes movement_play_signal synchronous when in LE mode, despite
using the underlying asynchronous API. It's a bit of a hack, but it
should work well enough for now.
This also moves the enabling/disabling of the buzzer into the
movement_play_signal function, so that watch faces no longer have to do
it.
Diffstat (limited to 'movement/movement_config.h')
-rw-r--r-- | movement/movement_config.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/movement/movement_config.h b/movement/movement_config.h index bafbc5e5..067ca44b 100644 --- a/movement/movement_config.h +++ b/movement/movement_config.h @@ -49,8 +49,7 @@ const watch_face_t watch_faces[] = { */ #define MOVEMENT_SECONDARY_FACE_INDEX (MOVEMENT_NUM_FACES - 2) // or (0) -/* Custom hourly chime tune. Check movement_custom_signal_tunes.h for options. - * Custom tunes do not currently work in LE mode. */ +/* Custom hourly chime tune. Check movement_custom_signal_tunes.h for options. */ #define SIGNAL_TUNE_DEFAULT #endif // MOVEMENT_CONFIG_H_ |