Change Script Engine Limitations
Changing the execution constants of the script engine
/**
* @brief Maximum number of variables that can be used in the script engine
*/
#define MAX_EXECUTION_COUNT 1000000/**
* @brief Maximum number of stack buffer count in the script engine
*/
#define MAX_STACK_BUFFER_COUNT 256Last updated