Skip to main content
embvis
Associate III
June 11, 2017
Question

Fast Parallel Port (32bite wide) to interface external IC using STM32F7 or H7

  • June 11, 2017
  • 1 reply
  • 1262 views
Posted on June 11, 2017 at 22:18

Hi,

How fast it is possible to drive external IC using Paraller Port (32bit wide, mixed PINs from various port) via DMA or other technics. I have connected also exteral SDRAM to MCU.

It is possible to achive about 40 - 50 MHz update freq ot entire port ?

Thank you in advance for all sugesstions.

#stm32f7 #32bit-parallel-port #freq #parallel-port #stm32h7
This topic has been closed for replies.

1 reply

Tesla DeLorean
Guru
June 11, 2017
Posted on June 11, 2017 at 22:38

Use the FSMC/FMC to write to a 32-bit data bus, and have external latch catch the write cycle (as if it were a SRAM or NOR type device)

Tips, Buy me a coffee, or three.. PayPal VenmoUp vote any posts that you find helpful, it shows what's working..
embvis
embvisAuthor
Associate III
June 12, 2017
Posted on June 12, 2017 at 01:41

Hi. I use fmc to sdram. I want to established communication from mcu to other ic independly from sdram lines. Data from sdram should be go the fastest way to parallrl port. 

Tesla DeLorean
Guru
June 12, 2017
Posted on June 12, 2017 at 01:59

The bus can interface to multiple devices. The GPIO banks are only 16-bit wide and the addresses are sufficiently far apart that you can't DMA a 32-bit word to a pair of them in consecutive transactions. The bus width to the video dac also isn't wide enough.

Tips, Buy me a coffee, or three.. PayPal VenmoUp vote any posts that you find helpful, it shows what's working..