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":
the origin code in line 111 is:
Display_Params params;
Display_Params_init(¶ms);
/* Open the UART display for output */
display = Display_open(Display_Type_UART, ¶ms);
And the result in the terminal is OK:
Now I just simply change the last line to:
display = Display_open(Display_Type_LCD, ¶ms);
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