MBSD / Mbed 2 deprecated AEB_TERATERM

Dependencies:   mbed

Fork of AEB by Vincenzo Comito

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers BBSerial.h Source File

BBSerial.h

00001 #pragma once
00002 
00003 #include <mbed.h>
00004 
00005 // Handle an error-correction connection between two boards
00006 // Board to Board serial
00007 // using UART3
00008 class BBSerial {
00009 
00010     
00011     public:
00012         
00013          BBSerial();
00014         void printf(const char* format, ...);
00015         int scanf(const char* format, ...);
00016 
00017         
00018     
00019     Serial  uart;
00020 };