summaryrefslogtreecommitdiff
path: root/src/components/ble/DfuService.cpp
AgeCommit message (Collapse)AuthorFilesLines
2022-06-05Fix various typosluz paz1-1/+1
Found via `codespell -q 3 -S ./src/libs -L ans,doubleclick,trough`
2022-06-05Replace C-style casts with static_castFinlay Davidson1-8/+10
2022-03-08Add missing nrf_log.h includes shadowed by SystemMonitor.hReinhold Gschweicher1-0/+1
Some components were missing a `nrf_log.h` include. This missing include was accidentally provided by the SystemMonitor.h header, which was included by Systemtask.h
2021-11-15Update includes to to be relative to src directoryReinhold Gschweicher1-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.
2021-07-24Remove unnecessary C-style casts with BLE UUIDsJonathan Vander Mey1-13/+13
Instead of casting the UUID object to the ble_uuid_t* used throughout the NimBLE API just pass the address of the ble_uuid_t member that's at the start of each of the UUID structs.
2021-07-22Make firmware updating more foolproof (#469)Riku Isokoski1-5/+4
* 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-06-26SPI flash sleep if bootloader >= 1.0.0 (#322)Neil O'Fix1-0/+5
* 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-06Initialize SystemTask, DisplayApp and HeartRateTask as global static ↵Jean-François Milants1-3/+3
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-04-24Reformatted all the files according to clang-format styleAvamander1-117/+111
2020-11-16Include cleanup: componentsokaestne1-2/+2
2020-10-02Fixed all the includes that were broken due to the renamesAvamander1-0/+441