-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Description
What steps will reproduce the problem?
1. Connect to device
What is the expected output? What do you see instead?
Error updating UI from settings. Firmware Version 0.
What version of the product are you using? On what operating system?
1.04 Windows 7 Arduino Pro Micro
Please provide any additional information below.
Problem solved
System::Void Open(String^ ComPort, boolean ForceOpen)
{
Port->PortName = ComPort;
Port->BaudRate = 57600;
Port->ReadTimeout = 2000;
Port->DtrEnable = true;
try
{
Port->Open();
}
catch (System::Exception^ e)
{
}
Add a line Port->DtrEnable = true;
Original issue reported on code.google.com by khseal...@gmail.com on 15 Feb 2015 at 8:18
Reactions are currently unavailable