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 Dec 18, 2024
1 parent e2ee589 commit f74f035
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 f74f035

Please sign in to comment.