GlobLib
HAL and API libraries for MCUs and hardware.
coms128.h
Go to the documentation of this file.
1 
43 #ifndef COM128_H_
44 #define COM128_H_
45 
46 #include "fifo8.h"
47 #include "string11.h"
48 
52 #define TX_SIZE 128
53 
57 #define COMS(X) USART_setTxISR(X,COMOUT_con128(USART_add_put(X)))
58 
62 typedef void (*ret_point)(void);
63 
78 ret_point COMOUT_con128(void (*put)(uint8_t));
79 
82 #endif
83 
Header file for 8-bit circular FIFO software buffer.
void(* ret_point)(void)
Return function pointer type for COMOUT_con128.
Definition: coms128.h:62
Header file for C11 string library.
ret_point COMOUT_con128(void(*put)(uint8_t))
Initializes FIFO8 and STRING11.
Definition: coms128.c:27