2020-02-23 12:44:39 +00:00
|
|
|
#pragma once
|
|
|
|
|
2020-10-02 19:16:48 +00:00
|
|
|
#include <memory>
|
|
|
|
|
2020-02-23 12:44:39 +00:00
|
|
|
#include <FreeRTOS.h>
|
|
|
|
#include <task.h>
|
2020-11-15 14:05:51 +00:00
|
|
|
#include <timers.h>
|
2021-01-10 16:57:26 +00:00
|
|
|
#include <heartratetask/HeartRateTask.h>
|
|
|
|
#include <components/heartrate/HeartRateController.h>
|
2020-11-15 14:05:51 +00:00
|
|
|
|
2020-07-02 19:38:52 +00:00
|
|
|
#include "SystemMonitor.h"
|
2020-11-15 14:05:51 +00:00
|
|
|
#include "components/battery/BatteryController.h"
|
2020-10-02 19:16:48 +00:00
|
|
|
#include "components/ble/NimbleController.h"
|
2020-11-15 14:05:51 +00:00
|
|
|
#include "components/ble/NotificationManager.h"
|
2021-01-25 15:47:52 +00:00
|
|
|
#include "components/motor/MotorController.h"
|
2021-01-26 19:31:45 +00:00
|
|
|
#ifdef PINETIME_IS_RECOVERY
|
|
|
|
#include "displayapp/DisplayAppRecovery.h"
|
|
|
|
#include "displayapp/DummyLittleVgl.h"
|
|
|
|
#else
|
2020-11-15 14:05:51 +00:00
|
|
|
#include "displayapp/DisplayApp.h"
|
2021-01-26 19:31:45 +00:00
|
|
|
#include "displayapp/LittleVgl.h"
|
|
|
|
#endif
|
|
|
|
|
2020-11-15 14:05:51 +00:00
|
|
|
#include "drivers/Watchdog.h"
|
2020-02-23 12:44:39 +00:00
|
|
|
|
|
|
|
namespace Pinetime {
|
2020-11-15 14:05:51 +00:00
|
|
|
namespace Drivers {
|
|
|
|
class Cst816S;
|
|
|
|
class SpiMaster;
|
|
|
|
class SpiNorFlash;
|
|
|
|
class St7789;
|
|
|
|
class TwiMaster;
|
2021-01-10 16:57:26 +00:00
|
|
|
class Hrs3300;
|
2020-11-15 14:05:51 +00:00
|
|
|
}
|
2020-02-23 12:44:39 +00:00
|
|
|
namespace System {
|
|
|
|
class SystemTask {
|
|
|
|
public:
|
2020-10-27 18:51:06 +00:00
|
|
|
enum class Messages {GoToSleep, GoToRunning, OnNewTime, OnNewNotification, OnNewCall, BleConnected,
|
2021-01-17 09:39:46 +00:00
|
|
|
BleFirmwareUpdateStarted, BleFirmwareUpdateFinished, OnTouchEvent, OnButtonEvent, OnDisplayTaskSleeping
|
2020-03-25 20:23:40 +00:00
|
|
|
};
|
2020-02-23 12:44:39 +00:00
|
|
|
|
2020-05-07 17:53:51 +00:00
|
|
|
SystemTask(Drivers::SpiMaster &spi, Drivers::St7789 &lcd,
|
2020-07-19 18:30:44 +00:00
|
|
|
Pinetime::Drivers::SpiNorFlash& spiNorFlash,
|
|
|
|
Drivers::TwiMaster& twiMaster, Drivers::Cst816S &touchPanel,
|
2020-03-28 18:05:28 +00:00
|
|
|
Components::LittleVgl &lvgl,
|
|
|
|
Controllers::Battery &batteryController, Controllers::Ble &bleController,
|
|
|
|
Controllers::DateTime &dateTimeController,
|
2021-01-25 15:47:52 +00:00
|
|
|
Pinetime::Controllers::MotorController& motorController,
|
2021-01-10 16:57:26 +00:00
|
|
|
Pinetime::Drivers::Hrs3300& heartRateSensor);
|
2020-02-23 12:44:39 +00:00
|
|
|
|
|
|
|
|
|
|
|
void Start();
|
|
|
|
void PushMessage(Messages msg);
|
|
|
|
|
|
|
|
void OnButtonPushed();
|
|
|
|
void OnTouchEvent();
|
2020-06-01 18:40:11 +00:00
|
|
|
|
|
|
|
void OnIdle();
|
|
|
|
|
2020-07-11 20:37:28 +00:00
|
|
|
Pinetime::Controllers::NimbleController& nimble() {return nimbleController;};
|
|
|
|
|
2020-02-23 12:44:39 +00:00
|
|
|
private:
|
|
|
|
TaskHandle_t taskHandle;
|
|
|
|
|
|
|
|
Pinetime::Drivers::SpiMaster& spi;
|
|
|
|
Pinetime::Drivers::St7789& lcd;
|
2020-05-07 17:53:51 +00:00
|
|
|
Pinetime::Drivers::SpiNorFlash& spiNorFlash;
|
2020-07-19 18:30:44 +00:00
|
|
|
Pinetime::Drivers::TwiMaster& twiMaster;
|
2020-02-23 12:44:39 +00:00
|
|
|
Pinetime::Drivers::Cst816S& touchPanel;
|
|
|
|
Pinetime::Components::LittleVgl& lvgl;
|
|
|
|
Pinetime::Controllers::Battery& batteryController;
|
|
|
|
std::unique_ptr<Pinetime::Applications::DisplayApp> displayApp;
|
2021-01-10 16:57:26 +00:00
|
|
|
Pinetime::Controllers::HeartRateController heartRateController;
|
|
|
|
std::unique_ptr<Pinetime::Applications::HeartRateTask> heartRateApp;
|
|
|
|
|
2020-02-23 12:44:39 +00:00
|
|
|
Pinetime::Controllers::Ble& bleController;
|
|
|
|
Pinetime::Controllers::DateTime& dateTimeController;
|
2020-10-04 12:13:01 +00:00
|
|
|
QueueHandle_t systemTasksMsgQueue;
|
2020-09-13 19:26:44 +00:00
|
|
|
std::atomic<bool> isSleeping{false};
|
|
|
|
std::atomic<bool> isGoingToSleep{false};
|
|
|
|
std::atomic<bool> isWakingUp{false};
|
2020-02-23 20:09:11 +00:00
|
|
|
Pinetime::Drivers::Watchdog watchdog;
|
2020-03-22 11:03:17 +00:00
|
|
|
Pinetime::Drivers::WatchdogView watchdogView;
|
2021-01-24 16:22:39 +00:00
|
|
|
Pinetime::Controllers::NotificationManager notificationManager;
|
2021-01-25 15:47:52 +00:00
|
|
|
Pinetime::Controllers::MotorController& motorController;
|
2021-01-10 16:57:26 +00:00
|
|
|
Pinetime::Drivers::Hrs3300& heartRateSensor;
|
2021-01-17 15:34:14 +00:00
|
|
|
Pinetime::Controllers::NimbleController nimbleController;
|
2021-01-26 19:31:45 +00:00
|
|
|
Controllers::BrightnessController brightnessController;
|
2020-02-23 12:44:39 +00:00
|
|
|
|
|
|
|
static constexpr uint8_t pinSpiSck = 2;
|
|
|
|
static constexpr uint8_t pinSpiMosi = 3;
|
|
|
|
static constexpr uint8_t pinSpiMiso = 4;
|
|
|
|
static constexpr uint8_t pinSpiCsn = 25;
|
|
|
|
static constexpr uint8_t pinLcdDataCommand = 18;
|
|
|
|
static constexpr uint8_t pinButton = 13;
|
|
|
|
static constexpr uint8_t pinTouchIrq = 28;
|
|
|
|
|
|
|
|
static void Process(void* instance);
|
|
|
|
void Work();
|
2020-07-04 16:10:30 +00:00
|
|
|
void ReloadIdleTimer() const;
|
2020-05-01 19:58:31 +00:00
|
|
|
bool isBleDiscoveryTimerRunning = false;
|
|
|
|
uint8_t bleDiscoveryTimer = 0;
|
2020-06-07 18:05:04 +00:00
|
|
|
static constexpr uint32_t idleTime = 15000;
|
2020-06-01 18:40:11 +00:00
|
|
|
TimerHandle_t idleTimer;
|
|
|
|
bool doNotGoToSleep = false;
|
2020-02-23 12:44:39 +00:00
|
|
|
|
2020-06-01 18:40:11 +00:00
|
|
|
void GoToRunning();
|
2020-07-02 19:38:52 +00:00
|
|
|
|
|
|
|
#if configUSE_TRACE_FACILITY == 1
|
|
|
|
SystemMonitor<FreeRtosMonitor> monitor;
|
|
|
|
#else
|
|
|
|
SystemMonitor<DummyMonitor> monitor;
|
|
|
|
#endif
|
2020-02-23 12:44:39 +00:00
|
|
|
};
|
|
|
|
}
|
2020-07-11 20:37:28 +00:00
|
|
|
}
|