diff options
| author | Lee Lup Yuen <luppy@appkaki.com> | 2020-07-22 02:52:55 (GMT) |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-07-22 02:52:55 (GMT) |
| commit | 9f1ce39bcf7f7f9e8dfa4cc7a230726414df47b2 (patch) | |
| tree | 26acb98e8519d14d0533f814de396c6bb5a4bab0 /src | |
| parent | b4c2b4f811380c8e7c8ddfeb6a160abf68c0d145 (diff) | |
Fixed include paths for nRF5 SDK
/home/runner/work/pinetime-lab/pinetime-lab/src/drivers/TwiMaster.cpp:1:10: fatal error: sdk/integration/nrfx/nrfx_log.h: No such file or directory: #include <sdk/integration/nrfx/nrfx_log.h>
Diffstat (limited to 'src')
| -rw-r--r-- | src/drivers/TwiMaster.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/drivers/TwiMaster.cpp b/src/drivers/TwiMaster.cpp index 5d8fcf6..0123892 100644 --- a/src/drivers/TwiMaster.cpp +++ b/src/drivers/TwiMaster.cpp @@ -1,5 +1,5 @@ -#include <sdk/integration/nrfx/nrfx_log.h> -#include <sdk/modules/nrfx/hal/nrf_gpio.h> +#include <nrfx_log.h> +#include <nrf_gpio.h> #include <cstring> #include "TwiMaster.h" @@ -137,4 +137,4 @@ void TwiMaster::Write(uint8_t deviceAddress, const uint8_t *data, size_t size, b uint32_t error = twiBaseAddress->ERRORSRC; twiBaseAddress->ERRORSRC = error; } -}
\ No newline at end of file +} |
