ABB · Application Error ABB Motion Drives Error trouble shoo
This is a 'fatal' synchronous error indicating that the program's call stack has exceeded its allocated memory space. This typically occurs in complex or deeply nested Mint programs where too many function calls or recursive operations are active simultaneously. This error will terminate the Mint program immediately and will not call the ONERROR event.
Click steps to track your progress.
Review the Mint program code for any recursive functions and ensure they have a proper termination condition.
Analyze function call chains for excessive depth and consider refactoring to reduce nesting levels.
Optimize variable usage, especially within functions, to reduce stack memory consumption.
Test sections of code that involve complex logic or many function calls independently to pinpoint the source of stack overuse.
Increase the allocated stack size if configurable, although this should be a last resort after code optimization.