aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLofty Inclination <[email protected]>2025-01-01 00:59:31 +0000
committerLofty Inclination <[email protected]>2025-01-01 01:35:41 +0000
commitc967c368769ea2308acbe7e96977e4a1833fad22 (patch)
tree7ec4ed27422067c7f5f1e7f002a01e9a3701eee6
parentb2cc2fda26a7ecd6d64482e1f53eaf213f2b0a54 (diff)
Make arrow in comment point at magic numbers
This got broken during a move, and the arrows weren't pointing at anything meaningful. Not sure what the reason for them existing is, but it's probably better that they be accurate, even if they're still confusing.
-rw-r--r--embassy-stm32-wpan/src/tables.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/embassy-stm32-wpan/src/tables.rs b/embassy-stm32-wpan/src/tables.rs
index e730d6d87..152930ac6 100644
--- a/embassy-stm32-wpan/src/tables.rs
+++ b/embassy-stm32-wpan/src/tables.rs
@@ -278,6 +278,6 @@ pub static mut BLE_SPARE_EVT_BUF: Aligned<A4, MaybeUninit<[u8; TL_PACKET_HEADER_
278 278
279#[cfg(feature = "ble")] 279#[cfg(feature = "ble")]
280#[link_section = "MB_MEM2"] 280#[link_section = "MB_MEM2"]
281// fuck these "magic" numbers from ST ---v---v 281// fuck these "magic" numbers from ST ---v---v
282pub static mut HCI_ACL_DATA_BUFFER: Aligned<A4, MaybeUninit<[u8; TL_PACKET_HEADER_SIZE + 5 + 251]>> = 282pub static mut HCI_ACL_DATA_BUFFER: Aligned<A4, MaybeUninit<[u8; TL_PACKET_HEADER_SIZE + 5 + 251]>> =
283 Aligned(MaybeUninit::uninit()); 283 Aligned(MaybeUninit::uninit());