#include "API.h"
Go to the source code of this file.
Macros | |
#define | VEXROS_DEBUG_MODE 0 |
#define | VEXROS_DEBUG_OUTPUT_SERIAL uart2 |
#define | VEXROS_ROSSERIAL_INPUT_SERIAL stdin |
#define | VEXROS_ROSSERIAL_OUTPUT_SERIAL stdout |
#define | vexroslog(fmtstr, ...) fprintf((VEXROS_DEBUG_OUTPUT_SERIAL ), "[%d]: " " " fmtstr " " "\r\n", millis() ,##__VA_ARGS__) |
#define | vexroslogdebug(fmtstr, ...) |
#define | vexrosreadchar() fgetc(VEXROS_ROSSERIAL_INPUT_SERIAL) |
#define | vexroswrite(...) fprintf((VEXROS_ROSSERIAL_OUTPUT_SERIAL), __VA_ARGS__) |
#define | vexroswritechar(ch) fputc(ch, VEXROS_ROSSERIAL_OUTPUT_SERIAL) |
#define vexroslog | ( | fmtstr, | |
... | |||
) | fprintf((VEXROS_DEBUG_OUTPUT_SERIAL ), "[%d]: " " " fmtstr " " "\r\n", millis() ,##__VA_ARGS__) |
#define vexroslogdebug | ( | fmtstr, | |
... | |||
) |
#define vexrosreadchar | ( | ) | fgetc(VEXROS_ROSSERIAL_INPUT_SERIAL) |
#define vexroswrite | ( | ... | ) | fprintf((VEXROS_ROSSERIAL_OUTPUT_SERIAL), __VA_ARGS__) |
#define vexroswritechar | ( | ch | ) | fputc(ch, VEXROS_ROSSERIAL_OUTPUT_SERIAL) |