2015-09-18 06:53 AM
Hi:
I am working with the STM3221G-EVAL board and need to interface with at TFT display having a controller using i8080 8-bit interface. Most of the examples I been working with use 16-bit interface FSMC. Any ideas?Thanks #lcd #fsmc #tft #i8080 #8-bit2015-09-18 08:39 AM
Wouldn't you just half the width of the data bus, configure the controller in 8-bit mode, and watch the bit shift on the address bus, ie the A0 pin now actually reflects the A0 bit within the STM32
If you just left everything in 16-bit mode the bytes you want to access would just be a half-word apart. Pretty sure the TFT isn't going to care about linear addressing, and DMA operations tend to turn the address incrementing off. Presumably the control only needs one address bit anyway, to differentiate between a control register, and a data register, and these could be anywhere in the decoded address space. Look at some 8-bit SRAM or NOR implementations/configurations