Skip to content

Commit

Permalink
feat(uart):add transmit string method to header file
Browse files Browse the repository at this point in the history
-add UART_PutString()
  • Loading branch information
abdullahbagyapan committed Apr 19, 2024
1 parent 22145b9 commit c90aba4
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion uart/uart.h
Original file line number Diff line number Diff line change
Expand Up @@ -39,4 +39,18 @@ void UART_Init(void);
@return None
*/
void UART_PutChar(uint8_t ui8Data);
void UART_PutChar(uint8_t ui8Data);


/*
@brief: Transmit string data by UART
@author Abdullah Bagyapan
@date 19/04/2024
@param The string data
@return None
*/
void UART_PutString(uint8_t *ui8pData);

0 comments on commit c90aba4

Please sign in to comment.