ARDUINO MEGA Functions Debug
| Line 7: | Line 7: | ||
You can open this debugger window from the "Robot -> Debugger Windows -> Debug Stream" window when in Expert or Super User mode. | You can open this debugger window from the "Robot -> Debugger Windows -> Debug Stream" window when in Expert or Super User mode. | ||
| − | + | [[File:DebugStream.png]] | |
{{tl|1|1}} | {{tl|1|1}} | ||
<br /> | <br /> | ||
Revision as of 17:45, 9 May 2012
ARDUINO → Functions and Variables → ARDUINO MEGA Functions Debug
The debugger in ROBOTC allows you to see all of your sensor, motor and variables while running your program. ROBOTC also has a debug terminal called the "Debug Stream" that you can use to output a terminal-like stream of information to have an additional way to monitor your program.
The debug stream is buffered directly in memory on the Arduino platform - You can store 300 bytes of debug stream data on the Arduino when running away from the PC. Once the Arduino is connected to the PC, you can open the debug stream and the entire buffer will be written to the "Debug Stream" debugger window.
You can open this debugger window from the "Robot -> Debugger Windows -> Debug Stream" window when in Expert or Super User mode.
|
| |||||||
writeDebugStream
| void writeDebugStream(const string sFormatString, ...) | ||||||
| (void) The Debug Stream functionality allow the user to output formatted text to a debug terminal. This command works similar to a print to LCD command, but displays the information to the "Debug Stream" ROBOTC debugger window. | ||||||
| ||||||
|
writeDebugStream
| void writeDebugStream(const string sFormatString, ...) | ||||||
| (void) The Debug Stream functionality allow the user to output formatted text to a debug terminal. This command works similar to a print to LCD command, but displays the information to the "Debug Stream" ROBOTC debugger window. | ||||||
| ||||||
|
nVexMasterVersion
| const word nVexMasterVersion | |
| (word) Variable contains the firmware version for the VEX master CPU. | |
|
version
| const word version | |
| (word) Contains the firmware version number. | |
|
