Author: Vojtěch Jirkovský <vojta.j@gmail.com>
Fix #include to relative paths
src/graphics.cpp | 6 +++---
diff --git a/src/graphics.cpp b/src/graphics.cpp index 8c39c89a0ae6580a405d8b369641cdcc64650ede..3b53703cc35698839c2fcaebbcf32541956404d4 100644 --- a/src/graphics.cpp +++ b/src/graphics.cpp @@ -7,9 +7,9 @@ #include#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 @@ for (;;) { APP_ERROR_HANDLER(NRF_ERROR_FORBIDDEN); } -} \ No newline at end of file +}