I would like to know about the 4 GPIO speed settings on the STM32H743BIt6. And is it possible to measure the system clock 400Mhz from the MCO2 pin output terminal?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2023-05-11 12:13 AM
​I am using STM32H743Bit6.
#define GPIO_SPEED_FREQ_LOW (0x00000000U) /*!< Low speed */
#define GPIO_SPEED_FREQ_MEDIUM (0x00000001U) /*!< Medium speed */
#define GPIO_SPEED_FREQ_HIGH (0x00000002U) /*!< Fast speed */
#define GPIO_SPEED_FREQ_VERY_HIGH (0x00000003U) /*!< High speed */
​
I would like to know the maximum frequency of each.
And is it possible to measure the system clock 400Mhz from the MCO2 pin output terminal?
Solved! Go to Solution.
- Labels:
-
GPIO-EXTI
-
STM32H7 Series
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2023-05-11 10:35 PM
The real world (pcb) is full of (unwanted) capacitances, driving these Cs fast takes fast and strong drivers, these are usually not incorporated in MCU IOs.
Imagine it like that: a discharged cap at 0V (even if it's only 5pF pcb stray capacitance) looks to the driver, which wants to go from low to high, in the first moment (few ps) like a short circuit, so to "fill" that cap it takes either time or very high current.
Example: even most HiSpeed USB (480Mbit) capable MCUs rather rely on external PHYs to do that job (and others).
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2023-05-11 12:49 AM
Check the datasheet / reference manual about the GPIO speed settings. These are register settings, so you will find a description.
I am not sure if you can output an undivided system clock.
For clock related stuff I really like the CubeMX clock tree, check the path to MCO2 and if there's any dividers. But even if there are, then you should know what you get.
400 MHz output is not easy to do, and not so easy to measure.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2023-05-11 1:18 AM - edited ‎2023-11-20 5:45 AM
I see maximum speed 220 MHz
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2023-05-11 7:22 AM
Thank you for answer. I will refer to the datasheet.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2023-05-11 7:23 AM
It doesn't go over 400Mhz!! Then it would be difficult to measure 400Mhz on the GPIO MCO2 pin.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2023-05-11 3:55 PM
Can you tell me why it's difficult??
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2023-05-11 10:35 PM
The real world (pcb) is full of (unwanted) capacitances, driving these Cs fast takes fast and strong drivers, these are usually not incorporated in MCU IOs.
Imagine it like that: a discharged cap at 0V (even if it's only 5pF pcb stray capacitance) looks to the driver, which wants to go from low to high, in the first moment (few ps) like a short circuit, so to "fill" that cap it takes either time or very high current.
Example: even most HiSpeed USB (480Mbit) capable MCUs rather rely on external PHYs to do that job (and others).
