Merge pull request #40 from piggz/music

Music
This commit is contained in:
JF002
2020-07-25 15:03:29 +02:00
committed by GitHub
13 changed files with 425 additions and 7 deletions

View File

@@ -12,6 +12,7 @@
#include <host/util/util.h>
#include <drivers/InternalFlash.h>
#include "../main.h"
#include "Components/Ble/NimbleController.h"
using namespace Pinetime::System;

View File

@@ -8,9 +8,10 @@
#include <Components/Battery/BatteryController.h>
#include <DisplayApp/DisplayApp.h>
#include <drivers/Watchdog.h>
#include <Components/Ble/NimbleController.h>
#include <drivers/SpiNorFlash.h>
#include "SystemMonitor.h"
#include "Components/Ble/NimbleController.h"
#include "timers.h"
namespace Pinetime {
namespace System {
@@ -37,6 +38,8 @@ namespace Pinetime {
void OnIdle();
Pinetime::Controllers::NimbleController& nimble() {return nimbleController;};
private:
TaskHandle_t taskHandle;
@@ -84,4 +87,4 @@ namespace Pinetime {
#endif
};
}
}
}