Declaration:
void RedrawScreen();
Description
Updates all open windows of the name. Use this function, when the script file changes the microcontroller resources and you want to view the result of the change. A script file cannot update the screen on its own, because it takes significant time (as compared with the script file execution speed).
Example:
SetByte(addr, AS_DATA, 0x11);
RedrawScreen();
|