Medidor Online de Temperatura y Humedad de Bajo Consumo  1
Trabajo Fin de Carrera
uartio.h
Ir a la documentación de este archivo.
1 
5 #ifndef UARTIO_H_
6 #define UARTIO_H_
7 
8 #include <stdint.h>
9 #include <stdbool.h>
10 
11 bool UARTIO_Init(uint32_t uartId, uint32_t baudRate);
12 int UARTIO_Printf(int uartId, const char *checkString, const char *format, ...);
13 int UARTIO_Printfln(int uartId, const char *checkString, const char *format, ...);
14 int UARTIO_Scanf(int uartId, int delayms, char *message);
15 char* UARTIO_Str(int uartId, int timeoutms, const char *string);
16 
17 #endif /* UARTIO_H_ */