Part Number: MSP430G2553
Tool/software: TI C/C++ Compiler
Hi all.
I have programming msp430 via IAR 6.40 version.
And I have an error message in code, thats performed during performance of the work many times:
void LCD_ShowLong( signed long val, unsigned char xCoord, unsigned char yCoord, bool isClearToEndOfLine )
{
unsigned char resMas[lcdColCount];
unsigned char *res = &resMas[0]; //fatal error
...
}
, and one time it causes an error message with caption "Driver": "Fatal Error: Plain pointer ShrAssisn Session aborted!".
And the debug log says "The stack pointer for stack 'Stack' (currently Memory:0x396) is outside the stack range (Memory 0x3B0 to Memory 0x408)", so I have increase the stack size (General Options -> Stack/Heap -> "Stack size" and "Data16 heap size") up to 100, thats have no any effect.
Please help!