I’m having an issue with the debug stream coming up blank while testing my Arduino and Cortex communication.
I’m using jpearman’s code he posted a while ago for Cortex-Arduino Communication.
Here is a photo of the Debug Stream:
Here is the section of code where the debug statements are used:
void
VexDataPrint( vexdata *v )
{
int i;
char str[4];
for(i=0;i<(VEXDATAOFFSET+v->data.datalen+2);i++)
{
sprintf(str, "%02X ", v->buffer*);
writeDebugStream(str);
}
writeDebugStreamLine("");
}
If anyone could point me in the direction to what the issue might be, that’d be greatly appreciated!*