From 0fe5b87bc60eab1870e2b4f5df71686a387edafe Mon Sep 17 00:00:00 2001 From: Dyllan Kobal <33408746+dyllan500@users.noreply.github.com> Date: Mon, 12 Sep 2022 02:31:36 -0400 Subject: [PATCH] Add changes for music fast forward PR (#61) This pull request allows my pull request InfiniTimeOrg/InfiniTime#1323 in the InfiniTime project to build the simulator that's in this project. Both pull requests add the feature that I requested here: InfiniTimeOrg/InfiniTime#1320 Co-authored-by: Dyllan Kobal --- sim/components/ble/MusicService.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/sim/components/ble/MusicService.h b/sim/components/ble/MusicService.h index 554c343..ddbd23f 100644 --- a/sim/components/ble/MusicService.h +++ b/sim/components/ble/MusicService.h @@ -56,6 +56,8 @@ namespace Pinetime { static const char EVENT_MUSIC_PREV = 0x04; static const char EVENT_MUSIC_VOLUP = 0x05; static const char EVENT_MUSIC_VOLDOWN = 0x06; + static const char EVENT_MUSIC_FORWARD = 0x07; + static const char EVENT_MUSIC_REWIND = 0x08; enum MusicStatus { NotPlaying = 0x00, Playing = 0x01 };