/// This function will initiate data sending via UART peripheral
UART_Send(uint8_t byte_count, ///< number of bytes to send
uint8_t* data ///< pointer to buffer with data to send
);
/// This function will receive data via UART peripheral
UART_Receive(uint8_t byte_count, ///< number of bytes to receive
uint8_t* data ///< pointer to buffer where received data will be stored
);
It is expected to create functions: