santekhnik / Cryptograph

Cryptograph device based on STM32F0 for student's practice
0 stars 0 forks source link

Implement UART driver (embedded) #7

Open santekhnik opened 10 months ago

santekhnik commented 10 months ago

It is expected to create functions:

/// 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
);