Fix #include that were pointing to my own FS instead of relative paths to the SDK.

This commit is contained in:
JF 2020-06-16 20:44:11 +02:00
parent fab220d0b9
commit f133d1e9ea
2 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
#include <sdk/modules/nrfx/mdk/nrf.h>
#include <mdk/nrf.h>
#include "InternalFlash.h"
using namespace Pinetime::Drivers;

View File

@ -3,7 +3,7 @@
#include <drivers/SpiMaster.h>
#include <drivers/Spi.h>
#include <drivers/SpiNorFlash.h>
#include <sdk/components/libraries/log/nrf_log.h>
#include <libraries/log/nrf_log.h>
#include "bootloader/boot_graphics.h"
#include <FreeRTOS.h>
#include <task.h>