Before logging an issue, please update to the latest release of Visual Micro from the Downloads Page.

When Logging a Support Issue in the Forum, please ensure you have also:-

  • Enabled vMicro > Compiler > Show Build Properties
  • Re-Compile your program with these settings enabled
 
Save the new Output to a Text File and....
  • Click the Reply button and attach as .txt file OR
  • Click here to Email us with the file attached, and a link to your post
Support requests without the output above may be impossible to answer, so please help us to help you
 
Page Index Toggle Pages: 1 Send TopicPrint
Normal Topic 1603.20 (Read 1650 times)
Tim@Visual Micro
Administrator
*****
Offline


Posts: 12076
Location: United Kingdom
Joined: Apr 10th, 2010
1603.20
Mar 20th, 2016 at 1:54pm
Print Post  
  • Support escape chars in Serial Monitor outbound data (see example 1). \U unicode, \x HEX etc.
  • Fix - Live free memory chart failed when using {@ReportFreeMemory} breakpoint syntax instead of the "Report>FreeMemory" project property
  • Add - Additional standard serial monitor speed - 74880 (reminder: any speed can be entered manually without selecting from the combo box of speeds)


Example 1 - CStr escape chars


arduino code for this example - echo back to pc

Code (C++)
Select All
void setup()
{

	Serial.begin(115200);
}

void loop()
{
	while(Serial.available())
		Serial.write(Serial.read());
}
 

« Last Edit: Mar 25th, 2016 at 1:16pm by Tim@Visual Micro »  
Back to top
WWW  
IP Logged
 
Page Index Toggle Pages: 1
Send TopicPrint