Transfer data (8 bits) to a TFT LCD

cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

Transfer data (8 bits) to a TFT LCD

Jump to solution
661 Views
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 Kudos
1 Solution
579 Views
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.
-------------------------------------------------------------------------------

View solution in original post

0 Kudos
1 Reply
580 Views
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 Kudos