Online Compiler
https://ide.mbed.com/compiler/
Be able to change the target board. Be able to export to the different target toolchain.
1 comment on Online Compiler:
Please log in to post comments.
https://ide.mbed.com/compiler/
Be able to change the target board. Be able to export to the different target toolchain.
Please log in to post comments.
main() runs in its own thread in the OS int main() { Initialise the digital pin LED1 as an output DigitalOut led(LED1); while (true) { led = 1; turn led on wait(0.5); wait for 0.5 sec led = 0; wait(0.5); } }