hello,
I am using the MSP-EXP430F5438 EVM on which I wish to display a string on the LCD on the board.
We could not find any examples on the "Example Software" that come with the CD provided.
So we searched for source files related to LCD programming and found the "hal_lcd.h".
We developed a code using the functions (related to the LCD) given in the header file, but we came across a lot of errors
such as "#5 could not open source file "UserExperience_F5438A.h", and "#5 could not open source file "hal_MSP-EXP430F5438.h"".
Following is an excerpt from the code.
#include <msp430.h>
#include <UserExperience_F5438A.h>
#include <hal_MSP-EXP430F5438A.h>
int main(void) {
WDTCTL = WDTPW + WDTHOLD; // Stop watchdog timer
halLcdInit();
halLcdBackLightInit();
halLcdSetBackLight(lcdBackLightLevelSettingLOCAL);
halLcdSetContrast(lcdContrastSettingLOCAL);
halLcdClearScreen();
halLcdImage(TI_BUG, 14, 106, 10, 0);
return 0;
}
Can you explain why?
Thanks