final working

This commit is contained in:
Priec
2026-05-23 00:14:01 +02:00
parent 92d69e875a
commit 6334c95e05
2 changed files with 5 additions and 5 deletions

View File

@@ -22,7 +22,7 @@ async fn send_byte(byte: u8, tx: &Tx) {
}
/// [START] [LEN] [PAYLOAD ...] [CRC] [P] [STOP]
pub async fn nrz(payload: &[u8], tx: &Tx) {
pub async fn msg_encode(payload: &[u8], tx: &Tx) {
// start
send_byte(START, tx).await;