forked from ARMmbed/mbed-os-snippet-UnbufferedSerial
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.cpp
35 lines (29 loc) · 861 Bytes
/
main.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
/*
* Copyright (c) 2020 Arm Limited and affiliates.
* SPDX-License-Identifier: Apache-2.0
*/
#include "mbed.h"
// Create a DigitalOutput object to toggle an LED whenever data is received.
DigitalOut led(LED1);
// Create a UnbufferedSerial object with a default baud rate.
UnbufferedSerial serial_port(USBTX, USBRX);
int main(void)
{
// Set desired properties (9600-8-N-1).
serial_port.baud(9600);
serial_port.format(
/* bits */ 8,
/* parity */ SerialBase::None,
/* stop bit */ 1
);
char c;
while (true) {
// Read the data
if (serial_port.read(&c, 1)) {
// Toggle the LED.
led = !led;
// Send a # back to the terminal.
serial_port.write("#", 1);
}
}
}