-
Notifications
You must be signed in to change notification settings - Fork 2k
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
boards/b_u585i_ iot02a/periph usbdev #19796
Merged
bors
merged 11 commits into
RIOT-OS:master
from
gschorcht:board/b-u585i-iot02a/periph_usbdev
Jul 6, 2023
Merged
boards/b_u585i_ iot02a/periph usbdev #19796
bors
merged 11 commits into
RIOT-OS:master
from
gschorcht:board/b-u585i-iot02a/periph_usbdev
Jul 6, 2023
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
The RNG can use HSI48, HSI48/2 or HSI16. Using MSI as 48 MHz clock source for RNG is not possible. The clock configuration in `stmclk_u5.c` activates anyway only the MSIS but not the MSIK which could be used for certain peripherals. Therefore, this commit - removes the configuration of MSI as 48 MHz clock for RNG and its selection in `RCC->CCIPR1.ICLKSEL` - enables HSI48 and selects it for RNG. The HSI48 will also be used in future for certain peripherals such as USB OTG FS and SDMMC.
Several STM32 families such as C0, G0, H7, L5 and U5 use `SYSTEM_STM32..XX_H` define instead of `__SYSTEM_STM32..XX_H` define to prevent multiple inclusion of `system_stm32xxxx.h`.
gschorcht
requested review from
leandrolanzieri,
jia200x,
MrKevinWeiss,
aabadie,
fjmolinas,
DipSwitch and
vincent-d
as code owners
July 5, 2023 07:45
github-actions
bot
added
Platform: ARM
Platform: This PR/issue effects ARM-based platforms
Area: pkg
Area: External package ports
Area: drivers
Area: Device drivers
Area: boards
Area: Board ports
Area: cpu
Area: CPU/MCU ports
Area: Kconfig
Area: Kconfig integration
labels
Jul 5, 2023
gschorcht
added
Type: new feature
The issue requests / The PR implemements a new feature for RIOT
CI: ready for build
If set, CI server will compile all applications for all available boards for the labeled PR
labels
Jul 5, 2023
benpicco
approved these changes
Jul 6, 2023
bors merge |
Build succeeded! The publicly hosted instance of bors-ng is deprecated and will go away soon. If you want to self-host your own instance, instructions are here. If you want to switch to GitHub's built-in merge queue, visit their help page. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
Area: boards
Area: Board ports
Area: cpu
Area: CPU/MCU ports
Area: drivers
Area: Device drivers
Area: Kconfig
Area: Kconfig integration
Area: pkg
Area: External package ports
CI: ready for build
If set, CI server will compile all applications for all available boards for the labeled PR
Platform: ARM
Platform: This PR/issue effects ARM-based platforms
Type: new feature
The issue requests / The PR implemements a new feature for RIOT
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Contribution description
This PR adds the USB OTG support for STM32U5 and the
b_u585i_iot02a
board.This PR includes PR #19795 since it uses directly the changes made in PR #19795.
Testing procedure
Compile and flash
Use the
sudo dmesg
command to get the kernel messages.Use the
ifconfig
command on the node to determine the IPv6 LLUA and ping the node.Issues/PRs references
Includes PR #19795