-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Add STM32N657 Nucleo Board support #3140
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
Conversation
add stm32-tcpp0203 driver as dependency for h7rs and n6
@@ -79,8 +79,8 @@ extern "C" { | |||
|
|||
#elif CFG_TUSB_MCU == OPT_MCU_STM32N6 | |||
#include "stm32n6xx.h" | |||
#define EP_MAX_FS 6 | |||
#define EP_FIFO_SIZE_FS 1280 | |||
#define EP_MAX_FS 9 |
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.
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.
perfect, thank you. Everything look great. I don't have a hardware to test with, but did try to compile and make some minor update to fix cmake build and/or some configuration and docs. I also refactor to have TCPP0203 driver as depencency since it can be used by more st board in the future.
Describe the PR
This PR adds support for the STM32N6, and BSP for the STM32N657 Nucleo Board.
Additional context
device_info
andcdc_msc_hid
examples.cdc_dual_ports
example, and it was verified that it was operating as a USB HS device.Disclaimer: this is my first contribution to TinyUSB, so I apologise if I haven't done things in the correct way!