Skip to content

Commit

Permalink
fix(CMSIS): Enable internal cache for Zephyr max32xxx (#1302)
Browse files Browse the repository at this point in the history
  • Loading branch information
kevin-gillespie authored and EricB-ADI committed Jan 6, 2025
1 parent 6dd7f82 commit 3d8bbef
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion Libraries/zephyr/MAX/Source/MAX32657/max32xxx_system.c
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,13 @@
******************************************************************************/

#include "max32657.h"
#include "icc.h"

/*
* This function is called during boot up.
*/
void max32xx_system_init(void) {}
void max32xx_system_init(void)
{
/* Enable instruction cache */
MXC_ICC_Enable();
}

0 comments on commit 3d8bbef

Please sign in to comment.