Skip to content

Commit 6a6b3d8

Browse files
author
Kai Meinhard
committed
Zephyr: In PR #60031 aarch32 directory was removed now use cmsis_core.h
1 parent 6400d71 commit 6a6b3d8

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

ports/zephyr/common/memfault_platform_coredump_regions.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,8 @@
1515
#include "memfault/ports/zephyr/version.h"
1616

1717
#if MEMFAULT_ZEPHYR_VERSION_GT(2, 1)
18-
#include <arch/arm/aarch32/cortex_m/cmsis.h>
18+
//#include <arch/arm/aarch32/cortex_m/cmsis.h>
19+
#include <cmsis_core.h>
1920
#else
2021
#include <arch/arm/cortex_m/cmsis.h>
2122
#endif

ports/zephyr/v2.4/memfault_fault_handler.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
// Starting in v3.4, the handler set function was renamed and the declaration
2424
// added to a public header
2525
#if MEMFAULT_ZEPHYR_VERSION_GT(3, 3)
26-
#include <arch/arm/aarch32/nmi.h>
26+
#include <cmsis_core.h>
2727
#define MEMFAULT_ZEPHYR_NMI_HANDLER_SET z_arm_nmi_set_handler
2828
#else
2929
#define MEMFAULT_ZEPHYR_NMI_HANDLER_SET z_NmiHandlerSet

0 commit comments

Comments
 (0)