diff options
| author | goueslati <[email protected]> | 2023-05-03 11:11:51 +0100 |
|---|---|---|
| committer | goueslati <[email protected]> | 2023-05-03 11:11:51 +0100 |
| commit | 0997021a0585271ef6677659764e7c2bed84faea (patch) | |
| tree | 08db1fd960be14374988413405b7b21899131361 | |
| parent | 0c07eef3a98279d6beea22dfa8e29d4f28c8be72 (diff) | |
fixed ble table cmd buffer being constant
| -rw-r--r-- | embassy-stm32/src/tl_mbox/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/embassy-stm32/src/tl_mbox/mod.rs b/embassy-stm32/src/tl_mbox/mod.rs index 623546dc9..54db78bd8 100644 --- a/embassy-stm32/src/tl_mbox/mod.rs +++ b/embassy-stm32/src/tl_mbox/mod.rs | |||
| @@ -113,7 +113,7 @@ pub struct DeviceInfoTable { | |||
| 113 | 113 | ||
| 114 | #[repr(C, packed)] | 114 | #[repr(C, packed)] |
| 115 | struct BleTable { | 115 | struct BleTable { |
| 116 | pcmd_buffer: *const CmdPacket, | 116 | pcmd_buffer: *mut CmdPacket, |
| 117 | pcs_buffer: *const u8, | 117 | pcs_buffer: *const u8, |
| 118 | pevt_queue: *const u8, | 118 | pevt_queue: *const u8, |
| 119 | phci_acl_data_buffer: *mut AclDataPacket, | 119 | phci_acl_data_buffer: *mut AclDataPacket, |
