APP 1 S5.

Dependencies:   mbed

UART.h

Committer:
IC_Blood
Date:
2016-01-10
Revision:
5:c6f70b61aea5
Child:
6:ccdbd5923e37

File content as of revision 5:c6f70b61aea5:

#ifndef UART_H
#define UART_H

class UART
{
    private:
        
        int     baudRate;
    
    public:
     
        UART(int baudRate);
     
    protected:
    
        int     getc();
        int     putc(int c);
        void    initUart();
};

#endif