Skip to content

Commit

Permalink
feat::uart module
Browse files Browse the repository at this point in the history
-add header file
  • Loading branch information
abdullahbagyapan committed Apr 18, 2024
1 parent 37fd82f commit eb5a8b3
Showing 1 changed file with 42 additions and 0 deletions.
42 changes: 42 additions & 0 deletions uart/uart.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
/*
@module: UART
@author: Abdullah Bagyapan
@date: 18/04/2024
*/

/*================================== Libraries ==================================*/


#include "stdint.h"


/*================================== Functions ==================================*/


/*
@brief: Initialize UART
@author Abdullah Bagyapan
@date 18/04/2024
@param None
@return None
*/
void UART_Init(void);



/*
@brief: Transmit a byte data by UART
@author Abdullah Bagyapan
@date 18/04/2024
@param The 1 byte data
@return None
*/
void UART_PutChar(uint8_t ui8Data);

0 comments on commit eb5a8b3

Please sign in to comment.