STM32 CPU clock vs GPIO clock
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2024-08-12 10:35 PM
Hi
what is the relationship between the speed of the CPU and the GPIO response. for example, I have a CPU clock of 72MHz and a GPIO clock of 36MHz and I set the pull-up when is this pull-up visible to the CPU because e.g. I would like to read the port value?
Solved! Go to Solution.
- Labels:
-
STM32F1 Series
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2024-08-19 7:01 AM
Notwithstanding the bus access is going to be the order of 4 cycles.
You aren't going to be able to read the GPIO approaching 36 MHz. It does impact the resynchronizer on the pin, to pull it into that domain.
How fast the pull-up acts will depend on the capacitive load on the pin, and the size of the pull-up resistor.
You could have a more aggressive pull-up externally, and use the pin in Open-Drain
Up vote any posts that you find helpful, it shows what's working..
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2024-08-13 5:04 AM
Did you try it? Depends on the capacitance on the line, but generally it should take effect immediately.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2024-08-19 4:52 AM
I think I was misunderstood.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2024-08-19 6:47 AM
If your question is "will be pin still be driven as output when I read the value in step 3?" then the answer is no. It may still have the same value, but the pin is now in input mode and is floating, or affected by pull resistors, or whatever else is present on the line.
I don't see the usefulness of this scenario here, but I assume this is tangential to what you're trying to achieve. If you put a sufficiently slow RC circuit on the pin, the signal will take time to change.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2024-08-19 7:01 AM
Notwithstanding the bus access is going to be the order of 4 cycles.
You aren't going to be able to read the GPIO approaching 36 MHz. It does impact the resynchronizer on the pin, to pull it into that domain.
How fast the pull-up acts will depend on the capacitive load on the pin, and the size of the pull-up resistor.
You could have a more aggressive pull-up externally, and use the pin in Open-Drain
Up vote any posts that you find helpful, it shows what's working..
