aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/ble/MusicService.cpp
Commit message (Collapse)AuthorAgeFilesLines
* MusicService: add missing includes for TickType_t and xTaskGetTickCount (#2130)NeroBurner2024-09-291-0/+2
| | | | | Add `FreeRTOS.h` include for the directly used data type `TickType_t` in the header and the function `xTaskGetTickCount` from FreeRTOS's `task.h`
* MusicService: Remove SystemTask dependencyRiku Isokoski2023-03-191-3/+3
|
* src: Enable unused parameter warningRiku Isokoski2023-01-241-3/+3
| | | | | | Fix warnings. Some clang-formatting was necessary. DebugPins is unused and was removed.
* Apply clang-format to all C++ filesFinlay Davidson2022-06-051-11/+10
|
* Make functions const againRiku Isokoski2022-04-251-1/+1
|
* Update track progress in MusicService. Fix #127Riku Isokoski2022-04-251-1/+12
|
* Music app : when title/track name are truncated, add an ellipsis at the end ↵Jean-François Milants2022-03-211-5/+13
| | | | of the strings.
* Add missing space in if expression.Jean-François Milants2022-03-211-1/+1
|
* Limit the size of the track and album name received by MusicService. This ↵Jean-François Milants2022-03-211-0/+7
| | | | should work around this bug : https://github.com/InfiniTimeOrg/InfiniTime/issues/825 and prevent heap over-allocation.
* Update includes to to be relative to src directoryReinhold Gschweicher2021-11-151-1/+1
| | | | | | | Don't use relative imports like `../foo.h` as those depend on the relative position of both files. Rather than that use imports relative to the `src` directory, which explicitly is part of the include directories.
* Inititialize members in class declarationJonathan Vander Mey2021-07-021-10/+0
| | | | Also added initializers for previously unintialized members.
* Move local-only function into anonymous namespaceJonathan Vander Mey2021-07-021-4/+3
|
* Make MusicService UUID objects static constexprJonathan Vander Mey2021-07-021-0/+31
|
* Eliminate reinterpret_castingJonathan Vander Mey2021-07-021-26/+26
|
* Updated license header yearAvamander2021-05-171-1/+1
|
* Used a macro for UUID generation, switched from C-style casts to ↵Avamander2021-05-171-122/+72
| | | | reinterpret_cast, renamed callback
* Reformatted all the files according to clang-format styleAvamander2021-04-241-98/+65
|
* Merge branch 'develop' into notification-titleJean-François Milants2021-04-091-1/+1
|\ | | | | | | | | # Conflicts: # src/displayapp/screens/Notifications.cpp
| * Fix music app :Jean-François Milants2021-04-041-1/+1
| | | | | | | | | | - Enable LVGL animation (and disable groups, which were not used), and set the speed. - Fix disc animation and progress display by initializing lastIncrement at 0 (a random value will be used otherwise, in release build)
* | Add support for notification title. The notification buffer must contain the ↵Jean-François Milants2021-04-041-1/+0
|/ | | | | | title and the message separated by a '\0' character. If the buffer does not contain any \0, the whole buffer is considered to be the message of the notification. A default title will be displayed in the notification app.
* Adapt the UUID of Music service according to new guidelines.Jean-François Milants2021-01-191-26/+62
|
* Include cleanup: componentsokaestne2020-11-161-1/+1
|
* Refactored and improved the Music watchappAvamander2020-10-151-94/+190
|
* Fixed all the includes that were broken due to the renamesAvamander2020-10-021-0/+129