Dear All,
I have got 1 mbed module and am trying to run the basic program
#include "mbed.h"
DigitalOut myled(LED2);
int main() {
while(1) {
myled = 1;
wait(0.2);
myled = 0;
wait(0.2);
}
}
The .bin file is getting saved in the mbed. but the program is not running (there is no blinking of LED2), i have tried this with LED1 also.
The LED indicating the power on is glowing as we plug the MBED to the computer usb.
I have used a couple of mbed modules earlier and have not faced such a problem in the earlier ones. I have also updated the firmware to the latest version from the site. please guide as to what should be done to make the MBED working
regards
Dear All,
I have got 1 mbed module and am trying to run the basic program
#include "mbed.h"
DigitalOut myled(LED2);
int main() {
while(1) {
myled = 1;
wait(0.2);
myled = 0;
wait(0.2);
}
}
The .bin file is getting saved in the mbed. but the program is not running (there is no blinking of LED2), i have tried this with LED1 also.
The LED indicating the power on is glowing as we plug the MBED to the computer usb.
I have used a couple of mbed modules earlier and have not faced such a problem in the earlier ones. I have also updated the firmware to the latest version from the site. please guide as to what should be done to make the MBED working
regards