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 Connected Arduino to Hypertermal (Read 2145 times)
mikey
Junior Member
**
Offline


Posts: 17
Joined: Jun 26th, 2015
Connected Arduino to Hypertermal
Apr 4th, 2016 at 7:29pm
Print Post  
Using a sparkfun FTDI cable to my custom arduino board - I send as below and recieve "VMDPR 14:35" on the hyperterminal PC


Code (C++)
Select All
	for (int i = 0; i < 16; i++){
		digitalWrite(13, HIGH);
		adc_val = rd_adc(i);
		delay(100);
		mySerial.print("adc ch" );
		mySerial.print(i);
		mySerial.print("adc value");
		mySerial.println(adc_val );
		delay(500);
		digitalWrite(13, LOW); 



Shocked
  
Back to top
 
IP Logged
 
Tim@Visual Micro
Administrator
*****
Offline


Posts: 12163
Location: United Kingdom
Joined: Apr 10th, 2010
Re: Connected Arduino to Hypertermal
Reply #1 - Apr 4th, 2016 at 7:48pm
Print Post  
That means the last upload was with debug enabled and that you also have a report switched on such as memory, digital, analog and/or I2c

That's how the debugger communicates with Visual Studio.
  
Back to top
IP Logged
 
Page Index Toggle Pages: 1
Send TopicPrint