Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Failed to find new port when attempt to upload .hex directly to Pro Micro (Leonardo) #2

Open
RamjetX opened this issue Dec 11, 2015 · 0 comments

Comments

@RamjetX
Copy link

RamjetX commented Dec 11, 2015

Arduino Builder: Version 0.91

Failed to find new port when attempt to upload .hex directly to Pro Micro (Leonardo).

Selected Leonardo from the pull down box.
Clicked on select file, navigated to and selected mysketch.hex.
Clicked on COM40 to begin programming.

Console advised Preparing to program, Performed 1200 baud reset of the Arduino board. Heard the Windows 7 USB disconnect and reconnect sound.

COM40 dissapeared and COM42 (bootloader COM Port) appeared in the Device Manager for Win7.

The bootloader COM Port is available for 2 seconds as per the latest version, but the Arduino Builder fails to find the new port.

Possible timeout whilst checking for new ports.

[code]
static string SearchNewPort()
{
DWORD tick = GetTickCount();
vector newports;

bool found = true;
do {
    newports.clear();
    ctb::GetAvailablePorts( newports );
    for( int i = 0; i < (int)newports.size(); i++) {
        // look for port in previous ports list
        found = false;
        for (int j = 0; j < ports.size(); j++) {
            if (newports[i].compare(ports[j]) == 0) {
                found = true;
                break;
            }
        }
        if (!found) {
            return newports[i];
        }
    }
    newports.clear();
    msleep(1000);   //<-------------- Perhaps timingout due to this delay?
} while (GetTickCount() - tick < 10000 && found);
return "";

}

[/code]

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant