summaryrefslogtreecommitdiff
path: root/src/SystemTask/SystemTask.h
AgeCommit message (Collapse)AuthorFilesLines
2020-07-19New implementation of the I²C/TWI driver.JF1-1/+3
Fix reset timing and add dummy reading in Cst816S to fix init error on some devices.
2020-07-04Automatically switch the display on when receiving a notificationJF1-0/+1
2020-07-02Reduce RAM memory usage by tuning the stack of the stasks and the heap ↵JF1-0/+7
allocated for FreeRTOS. Add Monitor to log the stack usage of each task.
2020-06-07Set idle timeout to 15s before going to sleep.JF1-1/+1
2020-06-01Automatically go to sleep after 5 sec of inactivity.JF1-1/+8
Advertise for 3 minutes at startup and on wake-up. Disable automatic continuous StartAdvertising.
2020-05-07Add SPI NOR Flash driver, WIP.JF1-1/+4
2020-05-02Add new screen that is displayed during the OTA transfert.JF1-1/+2
2020-05-01Defer the discovery of services using the system task.JF1-2/+3
2020-04-19Encapsulate nimble code into NimbleController.JF1-0/+2
Handle all GAP events.
2020-03-28Encapsulate Notification management in NotificationManager. It implement a ↵JF1-7/+6
static array of notifications to avoid dynamic allocation.
2020-03-25Add support for BLE notification (ANS client).JF1-1/+2
Work In Progress!!!
2020-03-22Add new App : Sysinfo. It displays various info about the running system : ↵JF1-0/+1
version, date/time, battery, brightness and resetreason. It contains placeholder for future use (like mac address, uptime,...).
2020-02-23Enable watchdog, and issue a WDT reset when the button is pushed for more ↵JF1-0/+2
than 7s.
2020-02-23Do not compile GFX and older fonts anymore.JF1-0/+60
Refactor SystemTask in its own class. Refactor Screen to be able to close current screen and open a new one. Re-enable sleep/wake up and propagate button event to Screens.