summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJF002 <JF002@users.noreply.github.com>2020-06-20 16:36:36 +0200
committerGitHub <noreply@github.com>2020-06-20 16:36:36 +0200
commite86991284fe5a41b913004f08f476aeeb83a71ef (patch)
tree7ce89e30c7c5efcac29f5e61662340de44f6432a /src
parentc1cf9fdebe0d4cbc43c5d676e1ace62f2d994086 (diff)
parent064e77f05ab54d522b3772fd6854368803373fed (diff)
Merge pull request #37 from darnel/fix-include
Fix #include to relative paths
Diffstat (limited to 'src')
-rw-r--r--src/graphics.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/graphics.cpp b/src/graphics.cpp
index 8c39c89a..3b53703c 100644
--- a/src/graphics.cpp
+++ b/src/graphics.cpp
@@ -7,9 +7,9 @@
#include "bootloader/boot_graphics.h"
#include <FreeRTOS.h>
#include <task.h>
-#include <sdk/integration/nrfx/legacy/nrf_drv_gpiote.h>
+#include <legacy/nrf_drv_gpiote.h>
#include <libraries/gpiote/app_gpiote.h>
-#include <sdk/modules/nrfx/hal/nrf_wdt.h>
+#include <hal/nrf_wdt.h>
#include <cstring>
#include <Components/Gfx/Gfx.h>
#include <drivers/St7789.h>
@@ -132,4 +132,4 @@ int main(void) {
for (;;) {
APP_ERROR_HANDLER(NRF_ERROR_FORBIDDEN);
}
-} \ No newline at end of file
+}