2020-11-15 14:05:51 +00:00
|
|
|
// nrf
|
2020-10-02 19:16:48 +00:00
|
|
|
#include <hal/nrf_rtc.h>
|
|
|
|
#include <hal/nrf_wdt.h>
|
2020-11-15 14:05:51 +00:00
|
|
|
#include <legacy/nrf_drv_clock.h>
|
2019-11-17 19:47:04 +00:00
|
|
|
#include <libraries/gpiote/app_gpiote.h>
|
2020-11-15 14:05:51 +00:00
|
|
|
#include <libraries/timer/app_timer.h>
|
2019-12-21 16:58:00 +00:00
|
|
|
#include <softdevice/common/nrf_sdh.h>
|
2021-08-09 18:49:35 +00:00
|
|
|
#include <nrf_delay.h>
|
2020-11-15 14:05:51 +00:00
|
|
|
|
|
|
|
// nimble
|
|
|
|
#define min // workaround: nimble's min/max macros conflict with libstdc++
|
|
|
|
#define max
|
2020-04-19 18:44:59 +00:00
|
|
|
#include <controller/ble_ll.h>
|
2020-11-15 14:05:51 +00:00
|
|
|
#include <host/ble_hs.h>
|
2020-04-19 18:44:59 +00:00
|
|
|
#include <host/util/util.h>
|
2020-11-15 14:05:51 +00:00
|
|
|
#include <nimble/nimble_port.h>
|
|
|
|
#include <nimble/nimble_port_freertos.h>
|
|
|
|
#include <nimble/npl_freertos.h>
|
|
|
|
#include <os/os_cputime.h>
|
2020-04-19 18:44:59 +00:00
|
|
|
#include <services/gap/ble_svc_gap.h>
|
2020-11-15 14:05:51 +00:00
|
|
|
#include <transport/ram/ble_hci_ram.h>
|
|
|
|
#undef max
|
|
|
|
#undef min
|
|
|
|
|
|
|
|
// FreeRTOS
|
|
|
|
#include <FreeRTOS.h>
|
|
|
|
#include <task.h>
|
|
|
|
#include <timers.h>
|
2021-01-10 16:57:26 +00:00
|
|
|
#include <drivers/Hrs3300.h>
|
2021-03-31 17:47:27 +00:00
|
|
|
#include <drivers/Bma421.h>
|
2020-04-19 18:44:59 +00:00
|
|
|
|
2021-06-26 18:53:32 +00:00
|
|
|
#include "BootloaderVersion.h"
|
2020-11-15 14:05:51 +00:00
|
|
|
#include "components/battery/BatteryController.h"
|
|
|
|
#include "components/ble/BleController.h"
|
|
|
|
#include "components/ble/NotificationManager.h"
|
2021-01-25 15:47:52 +00:00
|
|
|
#include "components/motor/MotorController.h"
|
2020-11-15 14:05:51 +00:00
|
|
|
#include "components/datetime/DateTimeController.h"
|
2021-06-06 13:56:03 +00:00
|
|
|
#include "components/heartrate/HeartRateController.h"
|
2021-07-11 13:06:06 +00:00
|
|
|
#include "components/fs/FS.h"
|
2020-11-15 14:05:51 +00:00
|
|
|
#include "drivers/Spi.h"
|
|
|
|
#include "drivers/SpiMaster.h"
|
|
|
|
#include "drivers/SpiNorFlash.h"
|
|
|
|
#include "drivers/St7789.h"
|
|
|
|
#include "drivers/TwiMaster.h"
|
|
|
|
#include "drivers/Cst816s.h"
|
2021-08-03 18:32:23 +00:00
|
|
|
#include "drivers/PinMap.h"
|
2020-11-15 14:05:51 +00:00
|
|
|
#include "systemtask/SystemTask.h"
|
2021-08-22 20:17:57 +00:00
|
|
|
#include "drivers/PinMap.h"
|
2021-07-15 11:11:27 +00:00
|
|
|
#include "touchhandler/TouchHandler.h"
|
2021-10-25 09:53:14 +00:00
|
|
|
#include "buttonhandler/ButtonHandler.h"
|
2020-02-08 17:01:02 +00:00
|
|
|
|
2019-11-17 19:47:04 +00:00
|
|
|
#if NRF_LOG_ENABLED
|
2021-04-18 17:28:14 +00:00
|
|
|
#include "logging/NrfLogger.h"
|
2019-11-17 19:47:04 +00:00
|
|
|
Pinetime::Logging::NrfLogger logger;
|
|
|
|
#else
|
2021-04-18 17:28:14 +00:00
|
|
|
#include "logging/DummyLogger.h"
|
2019-11-17 19:47:04 +00:00
|
|
|
Pinetime::Logging::DummyLogger logger;
|
|
|
|
#endif
|
|
|
|
|
2020-07-19 18:30:44 +00:00
|
|
|
static constexpr uint8_t touchPanelTwiAddress = 0x15;
|
2021-03-31 17:47:27 +00:00
|
|
|
static constexpr uint8_t motionSensorTwiAddress = 0x18;
|
2021-01-10 16:57:26 +00:00
|
|
|
static constexpr uint8_t heartRateSensorTwiAddress = 0x44;
|
2020-01-26 12:37:10 +00:00
|
|
|
|
2021-04-18 17:28:14 +00:00
|
|
|
Pinetime::Drivers::SpiMaster spi {Pinetime::Drivers::SpiMaster::SpiModule::SPI0,
|
|
|
|
{Pinetime::Drivers::SpiMaster::BitOrder::Msb_Lsb,
|
|
|
|
Pinetime::Drivers::SpiMaster::Modes::Mode3,
|
|
|
|
Pinetime::Drivers::SpiMaster::Frequencies::Freq8Mhz,
|
2021-08-03 18:32:23 +00:00
|
|
|
Pinetime::PinMap::SpiSck,
|
|
|
|
Pinetime::PinMap::SpiMosi,
|
|
|
|
Pinetime::PinMap::SpiMiso}};
|
2020-05-07 17:53:51 +00:00
|
|
|
|
2021-08-03 18:32:23 +00:00
|
|
|
Pinetime::Drivers::Spi lcdSpi {spi, Pinetime::PinMap::SpiLcdCsn};
|
|
|
|
Pinetime::Drivers::St7789 lcd {lcdSpi, Pinetime::PinMap::LcdDataCommand};
|
2020-05-07 17:53:51 +00:00
|
|
|
|
2021-08-03 18:32:23 +00:00
|
|
|
Pinetime::Drivers::Spi flashSpi {spi, Pinetime::PinMap::SpiFlashCsn};
|
2020-05-07 17:53:51 +00:00
|
|
|
Pinetime::Drivers::SpiNorFlash spiNorFlash {flashSpi};
|
2020-07-19 18:30:44 +00:00
|
|
|
|
|
|
|
// The TWI device should work @ up to 400Khz but there is a HW bug which prevent it from
|
|
|
|
// respecting correct timings. According to erratas heet, this magic value makes it run
|
|
|
|
// at ~390Khz with correct timings.
|
2021-04-18 17:28:14 +00:00
|
|
|
static constexpr uint32_t MaxTwiFrequencyWithoutHardwareBug {0x06200000};
|
2021-08-29 09:43:50 +00:00
|
|
|
Pinetime::Drivers::TwiMaster twiMaster {NRF_TWIM1, MaxTwiFrequencyWithoutHardwareBug, Pinetime::PinMap::TwiSda, Pinetime::PinMap::TwiScl};
|
2020-07-19 18:30:44 +00:00
|
|
|
Pinetime::Drivers::Cst816S touchPanel {twiMaster, touchPanelTwiAddress};
|
2021-01-26 19:31:45 +00:00
|
|
|
#ifdef PINETIME_IS_RECOVERY
|
2021-04-18 17:28:14 +00:00
|
|
|
#include "displayapp/DummyLittleVgl.h"
|
|
|
|
#include "displayapp/DisplayAppRecovery.h"
|
2021-01-26 19:31:45 +00:00
|
|
|
#else
|
2021-04-18 17:28:14 +00:00
|
|
|
#include "displayapp/LittleVgl.h"
|
|
|
|
#include "displayapp/DisplayApp.h"
|
2021-09-16 20:12:20 +00:00
|
|
|
#endif
|
2021-08-19 08:12:34 +00:00
|
|
|
Pinetime::Components::LittleVgl lvgl {lcd, touchPanel};
|
2021-01-26 19:31:45 +00:00
|
|
|
|
2021-04-18 17:28:14 +00:00
|
|
|
Pinetime::Drivers::Bma421 motionSensor {twiMaster, motionSensorTwiAddress};
|
2021-01-10 16:57:26 +00:00
|
|
|
Pinetime::Drivers::Hrs3300 heartRateSensor {twiMaster, heartRateSensorTwiAddress};
|
|
|
|
|
2019-12-26 17:33:40 +00:00
|
|
|
TimerHandle_t debounceTimer;
|
2021-05-16 19:13:22 +00:00
|
|
|
TimerHandle_t debounceChargeTimer;
|
2019-12-27 15:05:35 +00:00
|
|
|
Pinetime::Controllers::Battery batteryController;
|
2019-12-27 16:05:49 +00:00
|
|
|
Pinetime::Controllers::Ble bleController;
|
2020-01-03 15:32:31 +00:00
|
|
|
|
2021-06-06 13:56:03 +00:00
|
|
|
Pinetime::Controllers::HeartRateController heartRateController;
|
|
|
|
Pinetime::Applications::HeartRateTask heartRateApp(heartRateSensor, heartRateController);
|
|
|
|
|
2021-11-11 01:11:09 +00:00
|
|
|
Pinetime::Controllers::FS fs {spiNorFlash};
|
|
|
|
Pinetime::Controllers::Settings settingsController {fs};
|
|
|
|
Pinetime::Controllers::MotorController motorController {};
|
|
|
|
|
|
|
|
Pinetime::Controllers::DateTime dateTimeController {settingsController};
|
2021-06-06 13:56:03 +00:00
|
|
|
Pinetime::Drivers::Watchdog watchdog;
|
|
|
|
Pinetime::Drivers::WatchdogView watchdogView(watchdog);
|
|
|
|
Pinetime::Controllers::NotificationManager notificationManager;
|
|
|
|
Pinetime::Controllers::MotionController motionController;
|
|
|
|
Pinetime::Controllers::TimerController timerController;
|
2021-09-10 22:40:13 +00:00
|
|
|
Pinetime::Controllers::AlarmController alarmController {dateTimeController};
|
2021-07-15 11:11:27 +00:00
|
|
|
Pinetime::Controllers::TouchHandler touchHandler(touchPanel, lvgl);
|
2021-10-25 09:53:14 +00:00
|
|
|
Pinetime::Controllers::ButtonHandler buttonHandler;
|
2021-06-06 13:56:03 +00:00
|
|
|
|
|
|
|
Pinetime::Applications::DisplayApp displayApp(lcd,
|
|
|
|
lvgl,
|
|
|
|
touchPanel,
|
|
|
|
batteryController,
|
|
|
|
bleController,
|
|
|
|
dateTimeController,
|
|
|
|
watchdogView,
|
|
|
|
notificationManager,
|
|
|
|
heartRateController,
|
|
|
|
settingsController,
|
|
|
|
motorController,
|
|
|
|
motionController,
|
2021-07-15 11:11:27 +00:00
|
|
|
timerController,
|
2021-09-10 22:40:13 +00:00
|
|
|
alarmController,
|
2021-07-15 11:11:27 +00:00
|
|
|
touchHandler);
|
2021-06-06 13:56:03 +00:00
|
|
|
|
|
|
|
Pinetime::System::SystemTask systemTask(spi,
|
|
|
|
lcd,
|
|
|
|
spiNorFlash,
|
|
|
|
twiMaster,
|
|
|
|
touchPanel,
|
|
|
|
lvgl,
|
|
|
|
batteryController,
|
|
|
|
bleController,
|
|
|
|
dateTimeController,
|
|
|
|
timerController,
|
2021-09-10 22:40:13 +00:00
|
|
|
alarmController,
|
2021-06-06 13:56:03 +00:00
|
|
|
watchdog,
|
|
|
|
notificationManager,
|
|
|
|
motorController,
|
|
|
|
heartRateSensor,
|
|
|
|
motionController,
|
|
|
|
motionSensor,
|
|
|
|
settingsController,
|
|
|
|
heartRateController,
|
|
|
|
displayApp,
|
2021-07-11 13:06:06 +00:00
|
|
|
heartRateApp,
|
2021-07-15 22:49:20 +00:00
|
|
|
fs,
|
2021-10-25 09:53:14 +00:00
|
|
|
touchHandler,
|
|
|
|
buttonHandler);
|
2021-06-06 13:56:03 +00:00
|
|
|
|
2021-09-02 23:01:12 +00:00
|
|
|
/* Variable Declarations for variables in noinit SRAM
|
|
|
|
Increment NoInit_MagicValue upon adding variables to this area
|
|
|
|
*/
|
2021-08-19 00:44:22 +00:00
|
|
|
extern uint32_t __start_noinit_data;
|
|
|
|
extern uint32_t __stop_noinit_data;
|
2021-09-02 23:01:12 +00:00
|
|
|
static constexpr uint32_t NoInit_MagicValue = 0xDEAD0000;
|
2021-08-19 00:44:22 +00:00
|
|
|
uint32_t NoInit_MagicWord __attribute__((section(".noinit")));
|
|
|
|
std::chrono::time_point<std::chrono::system_clock, std::chrono::nanoseconds> NoInit_BackUpTime __attribute__((section(".noinit")));
|
|
|
|
|
2021-08-17 23:53:57 +00:00
|
|
|
|
2019-12-26 17:33:40 +00:00
|
|
|
void nrfx_gpiote_evt_handler(nrfx_gpiote_pin_t pin, nrf_gpiote_polarity_t action) {
|
2021-08-03 18:32:23 +00:00
|
|
|
if (pin == Pinetime::PinMap::Cst816sIrq) {
|
2021-08-10 19:03:34 +00:00
|
|
|
systemTask.OnTouchEvent();
|
2021-04-18 17:28:14 +00:00
|
|
|
return;
|
2020-01-03 15:32:31 +00:00
|
|
|
}
|
|
|
|
|
2019-12-26 17:33:40 +00:00
|
|
|
BaseType_t xHigherPriorityTaskWoken = pdFALSE;
|
2021-05-16 19:13:22 +00:00
|
|
|
|
2021-08-03 18:32:23 +00:00
|
|
|
if (pin == Pinetime::PinMap::PowerPresent and action == NRF_GPIOTE_POLARITY_TOGGLE) {
|
2021-05-16 19:13:22 +00:00
|
|
|
xTimerStartFromISR(debounceChargeTimer, &xHigherPriorityTaskWoken);
|
|
|
|
portYIELD_FROM_ISR(xHigherPriorityTaskWoken);
|
2021-10-25 09:53:14 +00:00
|
|
|
} else if (pin == Pinetime::PinMap::Button) {
|
|
|
|
xTimerStartFromISR(debounceTimer, &xHigherPriorityTaskWoken);
|
|
|
|
portYIELD_FROM_ISR(xHigherPriorityTaskWoken);
|
2021-05-16 19:13:22 +00:00
|
|
|
}
|
2019-12-26 17:33:40 +00:00
|
|
|
}
|
|
|
|
|
2021-05-16 19:13:22 +00:00
|
|
|
void DebounceTimerChargeCallback(TimerHandle_t xTimer) {
|
|
|
|
xTimerStop(xTimer, 0);
|
2021-06-06 13:56:03 +00:00
|
|
|
systemTask.PushMessage(Pinetime::System::Messages::OnChargingEvent);
|
2021-05-16 19:13:22 +00:00
|
|
|
}
|
|
|
|
|
2021-10-25 09:53:14 +00:00
|
|
|
void DebounceTimerCallback(TimerHandle_t /*unused*/) {
|
|
|
|
systemTask.PushMessage(Pinetime::System::Messages::HandleButtonEvent);
|
2019-11-17 19:47:04 +00:00
|
|
|
}
|
|
|
|
|
2020-01-22 18:45:53 +00:00
|
|
|
void SPIM0_SPIS0_TWIM0_TWIS0_SPI0_TWI0_IRQHandler(void) {
|
2021-04-18 17:28:14 +00:00
|
|
|
if (((NRF_SPIM0->INTENSET & (1 << 6)) != 0) && NRF_SPIM0->EVENTS_END == 1) {
|
2020-01-22 18:45:53 +00:00
|
|
|
NRF_SPIM0->EVENTS_END = 0;
|
2020-03-01 15:00:43 +00:00
|
|
|
spi.OnEndEvent();
|
2020-01-22 20:08:53 +00:00
|
|
|
}
|
|
|
|
|
2021-04-18 17:28:14 +00:00
|
|
|
if (((NRF_SPIM0->INTENSET & (1 << 19)) != 0) && NRF_SPIM0->EVENTS_STARTED == 1) {
|
2020-01-22 20:08:53 +00:00
|
|
|
NRF_SPIM0->EVENTS_STARTED = 0;
|
2020-03-01 15:00:43 +00:00
|
|
|
spi.OnStartedEvent();
|
2020-01-22 18:45:53 +00:00
|
|
|
}
|
|
|
|
|
2021-04-18 17:28:14 +00:00
|
|
|
if (((NRF_SPIM0->INTENSET & (1 << 1)) != 0) && NRF_SPIM0->EVENTS_STOPPED == 1) {
|
2020-01-22 18:45:53 +00:00
|
|
|
NRF_SPIM0->EVENTS_STOPPED = 0;
|
|
|
|
}
|
|
|
|
}
|
2020-02-23 12:44:39 +00:00
|
|
|
|
2021-04-18 17:28:14 +00:00
|
|
|
static void (*radio_isr_addr)(void);
|
|
|
|
static void (*rng_isr_addr)(void);
|
|
|
|
static void (*rtc0_isr_addr)(void);
|
2020-04-19 18:44:59 +00:00
|
|
|
|
|
|
|
/* Some interrupt handlers required for NimBLE radio driver */
|
|
|
|
extern "C" {
|
|
|
|
void RADIO_IRQHandler(void) {
|
|
|
|
((void (*)(void)) radio_isr_addr)();
|
|
|
|
}
|
|
|
|
|
|
|
|
void RNG_IRQHandler(void) {
|
|
|
|
((void (*)(void)) rng_isr_addr)();
|
|
|
|
}
|
|
|
|
|
|
|
|
void RTC0_IRQHandler(void) {
|
|
|
|
((void (*)(void)) rtc0_isr_addr)();
|
|
|
|
}
|
|
|
|
|
|
|
|
void WDT_IRQHandler(void) {
|
|
|
|
nrf_wdt_event_clear(NRF_WDT_EVENT_TIMEOUT);
|
|
|
|
}
|
|
|
|
|
|
|
|
void npl_freertos_hw_set_isr(int irqn, void (*addr)(void)) {
|
|
|
|
switch (irqn) {
|
|
|
|
case RADIO_IRQn:
|
|
|
|
radio_isr_addr = addr;
|
|
|
|
break;
|
|
|
|
case RNG_IRQn:
|
|
|
|
rng_isr_addr = addr;
|
|
|
|
break;
|
|
|
|
case RTC0_IRQn:
|
|
|
|
rtc0_isr_addr = addr;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-04-18 17:28:14 +00:00
|
|
|
uint32_t npl_freertos_hw_enter_critical(void) {
|
2020-04-19 18:44:59 +00:00
|
|
|
uint32_t ctx = __get_PRIMASK();
|
|
|
|
__disable_irq();
|
|
|
|
return (ctx & 0x01);
|
|
|
|
}
|
|
|
|
|
|
|
|
void npl_freertos_hw_exit_critical(uint32_t ctx) {
|
|
|
|
if (!ctx) {
|
|
|
|
__enable_irq();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ble_npl_eventq g_eventq_dflt;
|
|
|
|
|
2021-04-18 17:28:14 +00:00
|
|
|
struct ble_npl_eventq* nimble_port_get_dflt_eventq(void) {
|
2020-04-19 18:44:59 +00:00
|
|
|
return &g_eventq_dflt;
|
|
|
|
}
|
|
|
|
|
|
|
|
void nimble_port_run(void) {
|
2021-04-18 17:28:14 +00:00
|
|
|
struct ble_npl_event* ev;
|
2020-04-19 18:44:59 +00:00
|
|
|
|
|
|
|
while (1) {
|
|
|
|
ev = ble_npl_eventq_get(&g_eventq_dflt, BLE_NPL_TIME_FOREVER);
|
|
|
|
ble_npl_event_run(ev);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-04-18 17:28:14 +00:00
|
|
|
void BleHost(void*) {
|
2020-04-19 18:44:59 +00:00
|
|
|
nimble_port_run();
|
|
|
|
}
|
|
|
|
|
|
|
|
void nimble_port_init(void) {
|
|
|
|
void os_msys_init(void);
|
|
|
|
void ble_store_ram_init(void);
|
|
|
|
ble_npl_eventq_init(&g_eventq_dflt);
|
|
|
|
os_msys_init();
|
|
|
|
ble_hs_init();
|
|
|
|
ble_store_ram_init();
|
|
|
|
|
2020-05-02 15:42:26 +00:00
|
|
|
int res;
|
|
|
|
res = hal_timer_init(5, NULL);
|
|
|
|
ASSERT(res == 0);
|
|
|
|
res = os_cputime_init(32768);
|
|
|
|
ASSERT(res == 0);
|
2020-04-19 18:44:59 +00:00
|
|
|
ble_ll_init();
|
|
|
|
ble_hci_ram_init();
|
|
|
|
nimble_port_freertos_init(BleHost);
|
|
|
|
}
|
|
|
|
|
2021-04-18 17:28:14 +00:00
|
|
|
void nimble_port_ll_task_func(void* args) {
|
|
|
|
extern void ble_ll_task(void*);
|
2020-04-19 18:44:59 +00:00
|
|
|
ble_ll_task(args);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-11-17 19:47:04 +00:00
|
|
|
int main(void) {
|
|
|
|
logger.Init();
|
2020-03-01 15:00:43 +00:00
|
|
|
|
2019-11-17 19:47:04 +00:00
|
|
|
nrf_drv_clock_init();
|
|
|
|
|
2021-08-09 18:49:35 +00:00
|
|
|
// Unblock i2c?
|
2021-08-22 20:17:57 +00:00
|
|
|
nrf_gpio_cfg(Pinetime::PinMap::TwiScl,
|
2021-08-09 19:07:06 +00:00
|
|
|
NRF_GPIO_PIN_DIR_OUTPUT,
|
|
|
|
NRF_GPIO_PIN_INPUT_DISCONNECT,
|
|
|
|
NRF_GPIO_PIN_NOPULL,
|
|
|
|
NRF_GPIO_PIN_S0D1,
|
|
|
|
NRF_GPIO_PIN_NOSENSE);
|
2021-08-22 20:17:57 +00:00
|
|
|
nrf_gpio_pin_set(Pinetime::PinMap::TwiScl);
|
2021-08-09 18:49:35 +00:00
|
|
|
for (uint8_t i = 0; i < 16; i++) {
|
2021-08-22 20:17:57 +00:00
|
|
|
nrf_gpio_pin_toggle(Pinetime::PinMap::TwiScl);
|
2021-08-09 18:49:35 +00:00
|
|
|
nrf_delay_us(5);
|
|
|
|
}
|
2021-08-22 20:17:57 +00:00
|
|
|
nrf_gpio_cfg_default(Pinetime::PinMap::TwiScl);
|
2021-08-09 18:49:35 +00:00
|
|
|
|
2021-10-25 09:53:14 +00:00
|
|
|
debounceTimer = xTimerCreate("debounceTimer", 10, pdFALSE, nullptr, DebounceTimerCallback);
|
|
|
|
debounceChargeTimer = xTimerCreate("debounceTimerCharge", 200, pdFALSE, nullptr, DebounceTimerChargeCallback);
|
2021-04-18 17:28:14 +00:00
|
|
|
|
2021-06-26 18:53:32 +00:00
|
|
|
// retrieve version stored by bootloader
|
|
|
|
Pinetime::BootloaderVersion::SetVersion(NRF_TIMER2->CC[0]);
|
|
|
|
|
2021-09-02 23:01:12 +00:00
|
|
|
|
2021-08-19 00:44:22 +00:00
|
|
|
if (NoInit_MagicWord == NoInit_MagicValue) {
|
|
|
|
dateTimeController.SetCurrentTime(NoInit_BackUpTime);
|
2021-08-17 23:53:57 +00:00
|
|
|
} else {
|
2021-09-02 23:01:12 +00:00
|
|
|
//Clear Memory to known state
|
2021-08-19 00:44:22 +00:00
|
|
|
memset(&__start_noinit_data,0,(uintptr_t)&__stop_noinit_data-(uintptr_t)&__start_noinit_data);
|
|
|
|
NoInit_MagicWord = NoInit_MagicValue;
|
2021-08-17 23:53:57 +00:00
|
|
|
}
|
|
|
|
|
2021-06-12 08:58:28 +00:00
|
|
|
lvgl.Init();
|
|
|
|
|
2021-06-06 13:56:03 +00:00
|
|
|
systemTask.Start();
|
2021-07-15 11:11:27 +00:00
|
|
|
|
2020-04-19 18:44:59 +00:00
|
|
|
nimble_port_init();
|
2020-04-19 19:26:09 +00:00
|
|
|
|
2019-11-17 19:47:04 +00:00
|
|
|
vTaskStartScheduler();
|
|
|
|
|
|
|
|
for (;;) {
|
|
|
|
APP_ERROR_HANDLER(NRF_ERROR_FORBIDDEN);
|
|
|
|
}
|
|
|
|
}
|