SETLOGSIZE
Syntax SETLOGSIZE size
Explanation The RCX robot controller is able to log data elements to an internal table. This feature is especially useful when the RCX collects data which is being evaluated on the PC. The SETLOGSIZE command defines the size of this data log and resets the contents of the log. The data log should be kept as small as possible, because the RCX has limited memory.

Use the RCX.LOG command to log data, and the LOADLOG command to retrieve the logged data.

Examples SETLOGSIZE 10
RCX.LOG .CLOCK
RCX.LOG .TIMER1
LOADLOG
Result: [[.CLOCK 2000][.TIMER1 65]]

TopIndex