View Single Post
Old 4th Jan 2023, 11:49 pm   #71
SiriusHardware
Dekatron
 
Join Date: Aug 2011
Location: Newcastle, Tyne and Wear, UK.
Posts: 11,554
Default Re: Tesla Programmer

This seems to have done the trick - now the 'Ready' prompt is available as soon as the terminal can see the device.

Code:
  Serial.begin(115200,SERIAL_8N1);
  while (!Serial)
   {
   // Just loop until Serial becomes available
   }
  Serial.println("Ready - waiting for Intel Hex file at 115200,8,N,1");
SiriusHardware is online now