EU1KY AA
aauart.h
Go to the documentation of this file.
1 /*
2  * (c) Yury Kuchura
3  * kuchura@gmail.com
4  *
5  * This code can be used on terms of WTFPL Version 2 (http://www.wtfpl.net/).
6  */
7 
8 #ifndef AAUART_H_INCLUDED
9 #define AAUART_H_INCLUDED
10 
11 #include <stdint.h>
12 
13 #ifdef __cplusplus
14 extern "C" {
15 #endif
16 
17 void AAUART_Init(void);
18 int AAUART_Getchar(void);
19 void AAUART_PutString(const char* str);
20 void AAUART_PutBytes(const uint8_t* bytes, uint32_t len);
21 uint32_t AAUART_GetRxOvfCount(void);
22 void AAUART_IRQHandler(void);
23 uint32_t AAUART_IsBusy(void);
24 
25 #ifdef __cplusplus
26 }
27 #endif
28 
29 #endif //AAUART_H_INCLUDED
void AAUART_IRQHandler(void)
Definition: aauart.c:56
uint32_t AAUART_IsBusy(void)
Definition: aauart.c:90
char str[6]
Definition: panvswr2.c:1674
void AAUART_PutBytes(const uint8_t *bytes, uint32_t len)
Definition: aauart.c:113
int AAUART_Getchar(void)
Definition: aauart.c:95
void AAUART_PutString(const char *str)
Definition: aauart.c:107
void AAUART_Init(void)
Definition: aauart.c:26
uint32_t AAUART_GetRxOvfCount(void)
Definition: aauart.c:126