summaryrefslogtreecommitdiff
path: root/tmk_core/tool/mbed/mbed-sdk/libraries/tests/usb/device/serial/main.cpp
blob: 73e52bbfae175e68ce64d35b4a6d3b0973fed624 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#include "mbed.h"
#include "USBSerial.h"

//Virtual serial port over USB
USBSerial serial;
DigitalOut l1(LED1);

int main(void) {
    int i = 0;

    while(1)
    {
        l1 = !l1;
        printf("Hello\r\n");
        serial.printf("I am a virtual serial port: %d\r\n", i++);
        wait(0.1);
    }
}