NimbleController : CTS & ANS working but not at the same time (conflict during discovery)

This commit is contained in:
JF
2020-04-25 13:09:47 +02:00
parent 89ccdd0003
commit 5fcb90a149
8 changed files with 306 additions and 14 deletions

View File

@@ -22,7 +22,7 @@ SystemTask::SystemTask(Drivers::SpiMaster &spi, Drivers::St7789 &lcd, Drivers::C
Pinetime::Controllers::NotificationManager& notificationManager) :
spi{spi}, lcd{lcd}, touchPanel{touchPanel}, lvgl{lvgl}, batteryController{batteryController},
bleController{bleController}, dateTimeController{dateTimeController},
watchdog{}, watchdogView{watchdog}, notificationManager{notificationManager}, nimbleController({dateTimeController}) {
watchdog{}, watchdogView{watchdog}, notificationManager{notificationManager}, nimbleController(*this, dateTimeController, notificationManager) {
systemTaksMsgQueue = xQueueCreate(10, 1);
}