This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

LAUNCHXL-CC1312R1: LCD display

Part Number: LAUNCHXL-CC1312R1
Other Parts Discussed in Thread: CC1312R, SYSCONFIG

Hello,

I got the BOOSTXL- SHARP128 and connected to the Launchpad. The LCD display worked successfully when I used the example of "display" from online resource.

But when I was tried to change the UART display to LCD display in the example of "i2ctmp":

https://dev.ti.com/tirex/explore/node?devtools=LAUNCHXL-CC1312R1&node=AOLnDlPfr.g9W8QwojjsWA__pTTHBmu__LATEST

the origin code in line 111 is:

Display_Params params;
Display_Params_init(&params);
/* Open the UART display for output */
display = Display_open(Display_Type_UART, &params);

And the result in the terminal is OK:

Now I just simply change the last line to:

display = Display_open(Display_Type_LCD, &params);

which should show the content on the LCD screen.

But no result. Is that something about the configuration?

Since I work on the CC1312R, I always have question that even you copy the same code from the example to another example code, it successfully run but outcome results are not the same.

I check every code file in both projects that are totally same, but results are not. I think it is possibly relevant to the project configuration. But I don't know where I should set up.

Best Regard

Yuxiang