Custom board
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2023-12-06 11:29 PM
hi
Im developing my board using stm32f429ZITx by keeping stm32f429 disc 1 as a reference
Im using the entire GPIOG port for parallelly reading the 16-bit data as some of the GPIOG pins are used by DRAM
( i.e U6 IS42S16400J a dram ) is it possible to read?
Or is it necessary to keep DRAM?
Solved! Go to Solution.
- Labels:
-
ST boards
-
STM32F4 Series
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2023-12-07 6:33 AM
You only the SDRAM if your application uses it. Does your application need it for something? If not, leave it out.
You can read PGx pins just like any others.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2023-12-07 6:33 AM
You only the SDRAM if your application uses it. Does your application need it for something? If not, leave it out.
You can read PGx pins just like any others.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2023-12-08 1:26 AM
Is it possible to use SDRAM once I use all my GPIOG ports for reading data?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2023-12-08 6:40 AM
No, you can't use a pin for two things at the same time and SDRAM requires at least some PGx pins.
Design it in CubeMX and see what you can shift around to get all 16 pins on a port free.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2023-12-10 10:53 PM
Thank you @TDK
To read 16-bit parallel output should be connected to the same GPIOs(like GPIOB, GPIOG) or can I connect to random GPIOS which is free?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2023-12-11 6:19 PM
Connecting them all to the same port is required, otherwise it will take multiple reads and compiling of results.
