summaryrefslogtreecommitdiff
path: root/src/components/ble
AgeCommit message (Collapse)Author
2021-07-22Make firmware updating more foolproof (#469)Riku Isokoski
* Make firmware updating more foolproof and fix bugs * No need to manually handle overflow * Make startTime TickType_t * Don't process TouchEvents::None * Fix sleep getting re-enabled issue more directly
2021-07-11Notify battery level every 10 minutes when connected to a BLE host.Jean-François Milants
Refactor battery percent : only use uint8_t to store the battery % remaining.
2021-07-02Inititialize members in class declarationJonathan Vander Mey
Also added initializers for previously unintialized members.
2021-07-02Move local-only function into anonymous namespaceJonathan Vander Mey
2021-07-02Make MusicService UUID objects static constexprJonathan Vander Mey
2021-07-02Eliminate reinterpret_castingJonathan Vander Mey
2021-06-26SPI flash sleep if bootloader >= 1.0.0 (#322)Neil O'Fix
* Retrieve and display bootloader version - Display bootloader version on System Info screen - Enable SPI flash sleep mode if bootloader version >= 1.0.0 * Wait for SPI flash to wakeup before starting OTA DFU
2021-06-12Merge pull request #359 from Avamander/patch-2JF002
Used a macro for UUID generation, switched from C-style casts to reinterpret_cast, renamed callback
2021-06-06Initialize SystemTask, DisplayApp and HeartRateTask as global static ↵Jean-François Milants
variable instead of variables on the heap. We don't need them on the heap as we know their size at build time, it'll reduce memory fragmentation and it'll make memory analysis easier.
2021-05-16Updated license header yearAvamander
2021-05-16Used a macro for UUID generation, switched from C-style casts to ↵Avamander
reinterpret_cast, renamed callback
2021-04-24Changed access modified indentationAvamander
2021-04-24Reformatted all the files according to clang-format styleAvamander
2021-04-09Merge branch 'develop' into notification-titleJean-François Milants
# Conflicts: # src/displayapp/screens/Notifications.cpp
2021-04-04Fix music app :Jean-François Milants
- 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)
2021-04-04Ignore notification with empty message.Jean-François Milants
2021-04-04Add support for notification title. The notification buffer must contain the ↵Jean-François Milants
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.
2021-02-14Merge pull request #182 from petterhs/warningsJF002
Fix build warnings coming from HR implementation
2021-02-14Fix merge conflict.Jean-François Milants
2021-02-14Merge pull request #161 from petterhs/callsJF002
Call functionality with changed UUID for notification event characteristic
2021-02-07add vibration togglepetter
2021-02-02Update to nimble 1.3 master branch commit ↵Jean-François Milants
82153e744833821e20e9a8b0d61c38b2b0dbcfe1 WARNING : heartbeat task is disabled!
2021-01-27add mute button and functionality for call notification + new button iconspetter
2021-01-25fix build warnings in HR implementationpetter
2021-01-24Handle call notification the same way than other notifications.Jean-François Milants
Display the call notifications in the Notification app, with buttons to accept/reject the call.
2021-01-21change Notification Event base UUIDpetter
2021-01-21change Notification Event UUIDpetter
2021-01-21Add incoming call functionalityRasmus Schenstrom
Add categories to AlertNotification Add new alert notification screens bases Add Incoming Call Add Modal Add event to AlertNotification Co-authored-by: Robin Karlsson <robin.karlsson@protonmail.com>
2021-01-20Merge branch piggz/nav into develop:Jean-François Milants
- fix conflict - add a icon for the navigation app.
2021-01-20Merge pull request #169 from JF002/heartRateSensorJF002
Heart rate sensor
2021-01-19Music UUID must start with 00000000 instead of 00010000 (copy/paste error)Jean-François Milants
2021-01-19Adapt the UUID of Music service according to new guidelines.Jean-François Milants
2021-01-17Add heart rate BLE service.Jean-François Milants
2021-01-08fix MusicService UUID typo in commentpetter
2020-11-16Include cleanup: componentsokaestne
2020-10-29Refactoring of BLE service discovery : it is now implemented into the ↵JF
classes of the services.
2020-10-28Reset BLE services on disconnect, do not start advertising if a connection ↵JF
is already established.
2020-10-27Fix conflictsJF
2020-10-22Notifications : Fix copy when the messages is spread across multiple os_mbuf.JF
2020-10-21Notifications : Fix display of notification index/number.JF
2020-10-21Increase max size of notification message to 100 char.JF
Fix bug in message handling that would ignore the last character of the notification.
2020-10-20Integrate new notification UI with notifications coming from BLEJF
2020-10-15Unified MusicStatus enum constant capitalization with othersAvamander
2020-10-15Refactored and improved the Music watchappAvamander
2020-10-02Fixed all the includes that were broken due to the renamesAvamander