Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

arch/stm32h7: add CM4 core support #10328

Merged
merged 9 commits into from
Aug 25, 2023
Prev Previous commit
Next Next commit
arch/stm32h7: use STM32_CPUCLK_FREQUENCY to initialize perf
  • Loading branch information
raiden00pl committed Aug 24, 2023
commit 4ac55fc4cee337aac171869f69dead065ad8f8e4
2 changes: 1 addition & 1 deletion arch/arm/src/stm32h7/stm32_start.c
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ void __start(void)
showprogress('C');

#if defined(CONFIG_SCHED_IRQMONITOR) || defined(CONFIG_SEGGER_SYSVIEW)
up_perf_init((void *)STM32_SYSCLK_FREQUENCY);
up_perf_init((void *)STM32_CPUCLK_FREQUENCY);
#endif

/* Perform early serial initialization */
Expand Down