Usart1.h 287 B

12345678910111213141516
  1. #ifndef __USART1_H
  2. #define __USART1_H
  3. #include <stdint.h>
  4. #include <stdio.h>
  5. void Usart1_Init(void);
  6. //void USART1_SendByte(uint8_t Byte);
  7. //void USART1_SendArray(uint8_t * arr, uint16_t len);
  8. //void USART1_SendString(char *String);
  9. //void USART1_Printf(char *format, ...);
  10. #endif