We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b680c63 commit 6ea663eCopy full SHA for 6ea663e
MAX/Libraries/CMSIS/Device/Maxim/MAX32690/Source/system_max32690.c
@@ -128,6 +128,10 @@ __weak void SystemInit(void)
128
SCB->VTOR = (uint32_t)__isr_vector;
129
#endif /* __CC_ARM || __GNUC__ */
130
131
+ *(volatile uint32_t *)0x40000c00 = 1; // Enable test mode
132
+ *(volatile uint32_t *)0x4000040c = (1 << 6); // Disable cache read buffer
133
+ *(volatile uint32_t *)0x40000c00 = 0; // Disable test mode
134
+
135
MXC_ICC_Enable(MXC_ICC0);
136
MXC_ICC_Disable(MXC_ICC0);
137
0 commit comments