-
Trying to hook up an SPI LCD, but looking at the latest schematic there is no connection for the D/C pin. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 4 replies
-
I don't understand your statement. The SPI displays and touch controller share the same SPI bus (with dedicated CS pins for each device). I don't know the ILI9341 controller, but if the D/C pin is used to tell the controller if data or commands are being sent, then you can use the LCD_RS pin (D11), which does the same thing for the ILI9486 controller. See UHSDR/mchf-eclipse/drivers/ui/lcd/ui_lcd_hy28.c Lines 702 to 710 in dcbebe5
AFAIK Chris is not working on the code since a long time. |
Beta Was this translation helpful? Give feedback.
-
@BitLoose in case you have older pcb for UI, you can find suitable info for mods on this page This also might be helpfull understanding how things works since years. |
Beta Was this translation helpful? Give feedback.
I don't understand your statement. The SPI displays and touch controller share the same SPI bus (with dedicated CS pins for each device).
So for the display you would the same SPI pins as shown for the touch in the schematics. With the exception of the LCD_CS pin of course, which is the same for parallel and SPI displays, so it is also visible in the schematics.
I don't know the…