Part Number: MSP430G2553
I get an error that makes no sense to me. Offending code:
void WaterEvent( void )
{
RemainingFlowS -= 10; // this is declared as an unsigned int
}
error:
href="file:/C:/ti/ccs1110/ccs/tools/compiler/dmed/HTML/10099.html">#10099-D</a> program will not fit into available memory, or the section contains a call site that requires a trampoline that can't be generated for this section. run placement with alignment fails for section ".data" size 0x31. Available memory ranges: {error message ends}
if I replace RemainingFlowS with a different unsigned int, the error goes away