windowsarmcortex-mmbedlpc

Unable to connect mbed lpc1768 with putty , com ports not showing


my Code :

#include "mbed.h"

DigitalOut myLed(LED1);

int main() {

  while(1) {
    printf("Hello World!\n");
    myLed=1;
    wait(1);
    myLed=0;
    wait(1);
  }
}

The LED is blinking just fine , and I'm trying to connect my device to putty, and when I click on serial, it asks for serial line and I read it should be a COM port, but when I go to device manager there are no COM ports showing. I did a little research and found that I might have to add it manually so I did but this is what I get and I still can't connect putty to my mbed device.my device manager


Solution

  • Install the Mbed Serial Driver.