Add send break support

This commit is contained in:
Georgii Surkov
2024-11-17 21:01:15 +00:00
parent 51aafd1b5e
commit e3c3edcc7e
8 changed files with 44 additions and 6 deletions

View File

@@ -239,6 +239,12 @@ void furi_hal_serial_dma_rx_stop(FuriHalSerialHandle* handle);
*/
size_t furi_hal_serial_dma_rx(FuriHalSerialHandle* handle, uint8_t* data, size_t len);
/** Send a break sequence (low level for the whole character duration)
*
* @param handle Serial handle
*/
void furi_hal_serial_send_break(FuriHalSerialHandle* handle);
#ifdef __cplusplus
}
#endif