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 3969d85 commit 04ae15aCopy full SHA for 04ae15a
targets/TARGET_Maxim/TARGET_MAX32625/device/system_max32625.c
@@ -171,6 +171,10 @@ __weak int PreInit(void)
171
return 0;
172
}
173
174
+/* Override this function for early platform initialization
175
+*/
176
+__weak void low_level_init(void) {}
177
+
178
/* This function is called just before control is transferred to main().
179
*/
180
void SystemInit(void)
@@ -258,6 +262,9 @@ void SystemInit(void)
258
262
__ISB();
259
263
#endif
260
264
265
+ /* Early platform initialization */
266
+ low_level_init();
267
261
268
/* Perform an initial trim of the internal ring oscillator */
269
CLKMAN_TrimRO();
270
0 commit comments