This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

Interfacing GLCD on STM32F407VG port E

I am using a customized board in my lab for building my application. the board has some function buttons and a 320*240 Graphical LCD with touch panel. I will be using Keil MDK with ARM C/C++ for programming. Initially, I need to setup the correct interface for the GLCD connected on port E of the MCU and the touch panel connected on pins PB3, PB4, PB5, PB6. I should admit there are many examples to get started with Keil, but I have two disadvantages. first i never used Keil, second, my board does not suit the settings on Keil configuration files figuring in the examples. I have been looking for possible equivalences for 3 days now, but i cannot start it. I need to embed some image processing codes that i have already wrote. but nothing of these can be done if i have not performed the configuration correctly. Could someone help me please?
connections on my board are made as follows:

GLCD
MCU PIN -> GLCD PIN NAME - GLCD PIN NUMBER;

PE10->PMRD - 1;
PE11->PMWR - 2;
GROUND->GND - 3 ;
VCC->VCC - 4 ;
VEE->NC - 5 ;
PE12->RS - 6;
PE13->NC - 7;
PE14-> - ;
PE15->CS - 8;
PE0->D0 - 9;
PE1->D1 - 10;
PE2->D2 - 11;
PE3->D3 - 12;
PE4->D4 - 13;
PE5->D5 - 14;
PE6->D6 - 15;
PE7->D7 - 16;
PE8->RST - 17; ->VEE - 18 ;
5V->BCK_LIGHT - 19;
PE9->BPWN - 20;

TOUCH PAD:
MCU PIN -> GLCD PIN NAME - GLCD PIN NUMBER;

PB3-> XR - 21;
PB4-> YU - 22;
PB5-> XL - 23;
PB6-> YD - 24;

0