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’am 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 is 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.
figure of my device manager: