| 12345678910111213141516 |
- #ifndef __USART1_H
- #define __USART1_H
- #include <stdint.h>
- #include <stdio.h>
- void Usart1_Init(void);
- //void USART1_SendByte(uint8_t Byte);
- //void USART1_SendArray(uint8_t * arr, uint16_t len);
- //void USART1_SendString(char *String);
- //void USART1_Printf(char *format, ...);
- #endif
|