d

Dependencies:   mbed

Fork of AEB by Vincenzo Comito

BBSerial.h

Committer:
clynamen
Date:
2016-07-30
Revision:
3:4bb49a5dfa47
Child:
4:f0be0d8a0394

File content as of revision 3:4bb49a5dfa47:

#pragma once

#include <mbed.h>

// Handle an error-correction connection between two boards
// Board to Board serial
// using UART3
class BBSerial {

    
    public:
        
         BBSerial();
        void printf(const char* format, ...);
        int scanf(const char* format, ...);
    
    private:
        
    
    Serial  uart;
};