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.
2023-12-07 06: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.
2023-12-07 06: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.
2023-12-08 01:26 AM
Is it possible to use SDRAM once I use all my GPIOG ports for reading data?
2023-12-08 06: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.
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?
2023-12-11 06:19 PM
Connecting them all to the same port is required, otherwise it will take multiple reads and compiling of results.