-
Notifications
You must be signed in to change notification settings - Fork 1k
feat: Blues Heron (STM32U575CIT6) #2873
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
base: main
Are you sure you want to change the base?
Conversation
ac21877 to
016df1b
Compare
832bf50 to
c25c5b3
Compare
|
@fpistm Does the ST Low Power Library work with the U5? All my tests are passing, except I cannot achieve Low Power using the same sketch I use on both the Cygnet and Swan. Do you see anything wrong with my board configuration that would prevent me from achieving low power? |
As far as I remember, yes it works. Anyway it is possible that a bug or a missing configuration exist. Like for the USB part. |
| RCC_OscInitStruct.MSIState = RCC_MSI_ON; | ||
| RCC_OscInitStruct.MSIClockRange = RCC_MSIRANGE_0; // 100 kHz initially (will be overridden later) | ||
| RCC_OscInitStruct.MSICalibrationValue = RCC_MSICALIBRATION_DEFAULT; | ||
| RCC_OscInitStruct.HSI48State = RCC_HSI48_ON; // Critical for USB |
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.
Only if you left the CLK48 clk mux by default (HSI48).
As in your case you do not used PLL the only way is effectively HSI48 or maybe set MSK at 48000.
c848f12 to
d282f06
Compare
|
Converted to a DRAFT PR. I discovered a hardware bug during bring-up, and also just received word they are going to try a slightly different package to cost down the product. I don't think this BSP will change much (if any), but I don't want to hurry and push support for a board that may not exist. I should have new hardware soon, but not soon enough to hold the release. |
No description provided.