From 249bdf237f6451f32a603ecbb5d544b5a88eafcf Mon Sep 17 00:00:00 2001 From: EricB-ADI <122300463+EricB-ADI@users.noreply.github.com> Date: Fri, 13 Sep 2024 09:54:54 -0500 Subject: [PATCH 1/2] added ble stack to gitignore --- .gitignore | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitignore b/.gitignore index 5ec3816451d..3573714a36a 100644 --- a/.gitignore +++ b/.gitignore @@ -39,3 +39,5 @@ package.json .python-version mxc_version.h mxc_version.mk +Packetcraft-ADI +packetcraft-adi From dae1ff502fcadc25f7aa32beba4cee028b9ab27f Mon Sep 17 00:00:00 2001 From: EricB-ADI <122300463+EricB-ADI@users.noreply.github.com> Date: Fri, 13 Sep 2024 10:48:49 -0500 Subject: [PATCH 2/2] added nop to beginning of SystemInit --- Libraries/CMSIS/Device/Maxim/MAX32690/Source/system_max32690.c | 1 + 1 file changed, 1 insertion(+) diff --git a/Libraries/CMSIS/Device/Maxim/MAX32690/Source/system_max32690.c b/Libraries/CMSIS/Device/Maxim/MAX32690/Source/system_max32690.c index 264d11013d1..bfa47555173 100644 --- a/Libraries/CMSIS/Device/Maxim/MAX32690/Source/system_max32690.c +++ b/Libraries/CMSIS/Device/Maxim/MAX32690/Source/system_max32690.c @@ -134,6 +134,7 @@ __weak void PalSysInit(void) {} */ __weak void SystemInit(void) { + __NOP(); #ifdef DEBUG /* Delay to prevent bricks */ volatile int i;