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