a

Dependencies:   LCD_DISCO_F429ZI mbed BSP_DISCO_F429ZI

uart.h

Committer:
matis755
Date:
2020-05-22
Revision:
6:06ff453bb16e
Parent:
4:e48aee3e8d09

File content as of revision 6:06ff453bb16e:

#ifndef UART
#define UART

#include "mbed.h"

#define BUFFER_SIZE 100

class Uart {
    private:
        Serial MySerial;
    public:
        Uart();
        char gets(char *pStr, unsigned char ucSize);
        char puts(char *pStr, unsigned char ucSize);
};

#endif