Other Parts Discussed in Thread: MSP430F5419A
Hi,
I am getting an unresolved symbol error when trying to access __STACK_TOP in CCS developing for an MSP430f5419a chip. I am able to get the __STACK_SIZE by doing the following, but it does not work for __STACK_TOP for some reason:
extern char __STACK_SIZE;
void main(void){
unsigned stack_size = _symval(&__STACK_SIZE);
printf("stack size = %u\n", stack_size);
}