Transfer data (8 bits) to a TFT LCD

取消
显示结果 
显示  仅  | 搜索替代 
您的意思是: 
已解决

Transfer data (8 bits) to a TFT LCD

跳至解决方案
3,807 次查看
m_giraldi
Contributor II

I have an application for TFT128x160, in this application I have the CS / RES / DI / WR / RD and D0 ~ D7 ports.
I am using MK22FX512Axxx12, I need to write 8 bits on ports D0 ~ D7, what is the best way to declare and write on D0 ~ D7 (8 bits)

*** Attached (PDF) is the full summary

0 项奖励
回复
1 解答
3,725 次查看
FelipeGarcia
NXP Employee
NXP Employee

Hi Marcel,

 

To write to D0 to D7 please make sure you:

 

  • Enable the clock using: CLOCK_EnableClock(kCLOCK_PortD);
  • Set the pin as GPIO using: PORT_SetPinMux(PORTD, pinNum, kPORT_MuxAsGpio);
  • Initialize the pins as output with:

    gpio_pin_config_t config = {

        kGPIO_DigitalOutput,

        0,

    };

    GPIO_PinInit(GPIOD, pin, &config);

 To write data your approach using PDOR is correct.

 

Best regards,

Felipe

-------------------------------------------------------------------------------
Note:
- If this post answers your question, please click the "Mark Correct" button. Thank you!

- We are following threads for 7 weeks after the last post, later replies are ignored
Please open a new thread and refer to the closed one, if you have a related question at a later point in time.
-------------------------------------------------------------------------------

在原帖中查看解决方案

0 项奖励
回复
1 回复
3,726 次查看
FelipeGarcia
NXP Employee
NXP Employee

Hi Marcel,

 

To write to D0 to D7 please make sure you:

 

  • Enable the clock using: CLOCK_EnableClock(kCLOCK_PortD);
  • Set the pin as GPIO using: PORT_SetPinMux(PORTD, pinNum, kPORT_MuxAsGpio);
  • Initialize the pins as output with:

    gpio_pin_config_t config = {

        kGPIO_DigitalOutput,

        0,

    };

    GPIO_PinInit(GPIOD, pin, &config);

 To write data your approach using PDOR is correct.

 

Best regards,

Felipe

-------------------------------------------------------------------------------
Note:
- If this post answers your question, please click the "Mark Correct" button. Thank you!

- We are following threads for 7 weeks after the last post, later replies are ignored
Please open a new thread and refer to the closed one, if you have a related question at a later point in time.
-------------------------------------------------------------------------------

0 项奖励
回复