Skip to content

Commit

Permalink
Enabling instruction cache.
Browse files Browse the repository at this point in the history
  • Loading branch information
kevin-gillespie committed Dec 17, 2024
1 parent 1b95c3c commit f94a9c7
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 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,11 @@
******************************************************************************/

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

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

0 comments on commit f94a9c7

Please sign in to comment.