ABB · Application Error ABB Motion Drives Error trouble shoo
This is a 'fatal' synchronous error indicating an attempt to access an array element or data structure using an index that is outside its defined bounds. For example, trying to access the 10th element of an array declared with only 5 elements. This error will terminate the Mint program immediately and will not call the ONERROR event.
Click steps to track your progress.
Examine the Mint program code where array or collection access occurs, specifically focusing on index calculations.
Verify the declared size of the array or data structure and ensure all access attempts use valid indices (e.g., 0 to size-1).
Implement bounds checking before accessing array elements to prevent out-of-range errors.
Debug the program to track the values of indices during runtime and identify when they become invalid.
Review any calculations or user inputs that determine array indices for correctness.