-
Notifications
You must be signed in to change notification settings - Fork 143
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
Fix STM32H7 RCC clock output #853
Fix STM32H7 RCC clock output #853
Conversation
Does anyone have an idea why the Windows hosted examples fail? I have already restarted the job once. This PR only touches |
I've seen it on other PRs too, I think something changed on their end, maybe we need to upgrade the OS version or something… |
The Windows unit test executable crashes:
|
The windows CI fails on all PRs. The compiler version is exactly the same as on the last runs where the unit tests succeeded. I could also exclude that any changes we made on modm recently cause this. I have just rerun the Windows pipeline for a state that previously was fine but it also fails now. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice!
Do you want this merged now, or is this going into the large PR later?
I'd rather like this to be merged soon. I am working on STM32 camera interface support and need the clock out to supply the camera with a reference clock. I'm currently testing this on a H7 dual-core for which support is also not merged yet. It would certainly make my git workflow easier not having to deal with 3 feature branches at once 😉 |
Fix STM32H7 RCC clock output and add
connect()
method for alternate function configuration of clock outputs to RCC driver. Tested in hardware on a STM32H755ZI-Q Nucleo.I haven't yet added an example because support for STM32H7 dual-core is still work in progress. It will go into #844.
Fixes #852