Fix #include to relative paths

This commit is contained in:
Vojtěch Jirkovský 2020-06-17 09:02:28 +02:00
parent 3a49bbbae4
commit 064e77f05a

View file

@ -7,9 +7,9 @@
#include "bootloader/boot_graphics.h" #include "bootloader/boot_graphics.h"
#include <FreeRTOS.h> #include <FreeRTOS.h>
#include <task.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 <libraries/gpiote/app_gpiote.h>
#include <sdk/modules/nrfx/hal/nrf_wdt.h> #include <hal/nrf_wdt.h>
#include <cstring> #include <cstring>
#include <Components/Gfx/Gfx.h> #include <Components/Gfx/Gfx.h>
#include <drivers/St7789.h> #include <drivers/St7789.h>
@ -132,4 +132,4 @@ int main(void) {
for (;;) { for (;;) {
APP_ERROR_HANDLER(NRF_ERROR_FORBIDDEN); APP_ERROR_HANDLER(NRF_ERROR_FORBIDDEN);
} }
} }