I'm writing a graphics display driver for a display and I'm using a test program to see if my driver works.
It is using an msp430fr5969 and I'm using an msp430fr5739. Everything seems to be working correctly except for two things.
It says it cannot find the constant __MSP430_BASEADDRESS_CS_A__ when compiling and I can't find it anywhere, and I can't seem to find msp430fr5969.h file either.
Can anyone point me in the right direction please?
Here's the portion of the code where it is used...
void clockInit(void) { CS_init(__MSP430_BASEADDRESS_CS_A__); CS_setDCOFreq(__MSP430_BASEADDRESS_CS_A__,CS_DCORSEL_1,CS_DCOFSEL_3); CS_clockSignalInit( __MSP430_BASEADDRESS_CS_A__, CS_ACLK, CS_VLOCLK_SELECT, CS_CLOCK_DIVIDER_1 ); CS_clockSignalInit( __MSP430_BASEADDRESS_CS_A__, CS_SMCLK, CS_DCOCLK_SELECT, CS_CLOCK_DIVIDER_1 ); CS_clockSignalInit( __MSP430_BASEADDRESS_CS_A__, CS_MCLK, CS_DCOCLK_SELECT, CS_CLOCK_DIVIDER_1 ); }
Thanks in advance!