Hello, I was interested if any example / “all onâ€
You can download the source from here:
http://ece.wpi.edu/~albeik/MSP430-449-SK2-LCD-BETA.zip
If I implement a fully functional LCD, I will post the new link.
Give this one a shot!
You gotta love it when customers do your job for you
Thanks guys!
That was what I was looking for and then some thanks a lot.
You are very welcome.
Please note that in the Clear_LCD() function you need to change the for loop value to 20 or it will not clear everything on the LCD!
/***********************************************************************
*
* Clear_LCD()
*
* This function clears the all the segments on the LCD.
*
* Parameters:
* None
*
* Returns:
* None
*
***********************************************************************/
void Clear_LCD(void)
{
char *LCD = LCDMEM;
int i = 0;
for (i = 0; i < 20; i++)
*(LCD + i) = 0;
}
[/code]
Here is an update:
I get an error when trying to compile the example code given… and am having serious problems getting anything to compile and program. I am using the IAR kickstart IDE from TI and get the following error:
Error[e-46]: Undefined external “main” referred in ?cstart(C:\Program Files\IAR Systems\Embedded\Workbench 4.0\430\LIB\CLIB\cl430f.r43)
Any help with this or suggestions for compiling and programming the MSP would be great. I have been trying to get anything to program for a while just to get a start but have not had any luck yet.
Development board, MSP430-F449stk2
IDE’s
Image craft ICC 430 IDE
IAR Kickstart Embedded Wokrbench
I get an error when trying to compile the example code given… and am having serious problems getting anything to compile and program. I am using the IAR kickstart IDE from TI and get the following error:
Error[e-46]: Undefined external “main” referred in ?cstart(C:\Program Files\IAR Systems\Embedded\Workbench 4.0\430\LIB\CLIB\cl430f.r43)
Any help with this or suggestions for compiling and programming the MSP would be great. I have been trying to get anything to program for a while just to get a start but have not had any luck yet.
Development board, MSP430-F449stk2
IDE’s
Image craft ICC 430 IDE
IAR Kickstart Embedded Wokrbench
Hy Jacks,
you have to include both files:
Lab3_LCD.c
LCDDriver_v13.c
into the project.
Then just check your settings:
Project->Option->General->Target->MSP430F449
Project->Option->Debugger->FET Debugger
Ciao
JR
It seems these links are now all dead. Does anyone still have this code kicking around?
Thanks.
Hi Fridmann,
please try
http://www.olimex.com/dev/soft/msp430/L … atible.zip
and
http://www.olimex.com/dev/soft/msp430/M … t_soft.rar
best regards
JR