//! Serial
//!
//! This example demonstrates how to output serial data over USB.
//! It uses the built-in hardware-level USB OTG controller in order to
//! transmit data.
//!
//! Specifically, this code will wait to receive some bytes from the
//! USB device and, if any are found, it will echo them back. You can
//! actually use the Arduino Serial Monitor to echo commands from the
//! input box back out to the terminal.
extern crate teensycore;
use *;
use *;
main!;