added TL Mailbox initialization for STM32WB

This commit is contained in:
goueslati
2023-05-02 12:16:48 +01:00
parent 6096f0cf4b
commit bab30a7e87
11 changed files with 2063 additions and 1334 deletions

View File

@ -0,0 +1,8 @@
/// the payload of [`Evt`] for a command status event
#[derive(Copy, Clone)]
#[repr(C, packed)]
pub struct CsEvt {
pub status: u8,
pub num_cmd: u8,
pub cmd_code: u16,
}