mbed2_5

Dependencies:   LCD_DISCO_F429ZI mbed BSP_DISCO_F429ZI

Uart.h

Committer:
wolve265
Date:
2020-05-24
Revision:
0:edf190717f4f

File content as of revision 0:edf190717f4f:

#ifndef UART_H
#define UART_H

class Uart{
    private:
    
    public:  
        bool puts(char *, unsigned char);
        bool gets(char *, unsigned char);
        void print(char *);
};

#endif