From 064e77f05ab54d522b3772fd6854368803373fed Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vojte=CC=8Cch=20Jirkovsky=CC=81?= <vojta.j@gmail.com> Date: Wed, 17 Jun 2020 09:02:28 +0200 Subject: [PATCH] Fix #include to relative paths --- src/graphics.cpp | 6 +++--- 1 file 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 +}