Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
serialPortCheck.cpp
- Committer:
- mjoun
- Date:
- 2020-02-21
- Revision:
- 0:e341ea4101e9
File content as of revision 0:e341ea4101e9:
/* mbed Microcontroller Library * Copyright (c) 2019 ARM Limited * SPDX-License-Identifier: Apache-2.0 */ #include "mbed.h" #include "USBSerial.h" // Blinking rate in milliseconds #define BLINKING_RATE_MS 500 // Virtual serial port over USB USBSerial microUSB; //Serial pc(USBTX, USBRX); char buf[40]; int main() { // Initialise the digital pin LED1 as an output DigitalOut led(LED1); while (true) { microUSB.scanf("%s", buf); led = !led; // pc.printf("regular serial communication works!"); microUSB.printf("you typed: %s\r\n",buf); //microUSB.printf("\x1B[2J"); //clear terminal program screen } }