Skip to content

Commit c2644e7

Browse files
committed
RP2040: fix include paths
1 parent 67ac647 commit c2644e7

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

targets/TARGET_RASPBERRYPI/TARGET_RP2040/analogin_api.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#include "mbed_assert.h"
22
#include "analogin_api.h"
3-
#include "adc.h"
3+
#include "hardware/adc.h"
44
#include "pinmap.h"
55
#include "PeripheralPins.h"
66

targets/TARGET_RASPBERRYPI/TARGET_RP2040/reset_reason.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
#ifdef DEVICE_RESET_REASON
55

6-
#include "structs/resets.h"
6+
#include "hardware/structs/resets.h"
77

88
reset_reason_t hal_reset_reason_get(void)
99
{

targets/TARGET_RASPBERRYPI/TARGET_RP2040/watchdog_api.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#include "watchdog_api.h"
22
#include "hardware/watchdog.h"
3-
#include "structs/watchdog.h"
3+
#include "hardware/structs/watchdog.h"
44

55
#if DEVICE_WATCHDOG
66

0 commit comments

Comments
 (0)