esp-hal/esp-wifi/src/ble/mod.rs
Björn Quentin 0ad4ee0c91
esp-wifi: Fix clippy issues (#1631)
* Don't activate additional features in esp-hal

* Apply `clippy --fix`

* Clippy

* Clippy

* Clippy

* Clippy

* Enable linting esp-wifi

* Fix

* Fix typo
2024-05-28 12:49:55 +00:00

99 lines
2.4 KiB
Rust

//! Bluetooth Low Energy HCI interface
#[cfg(any(esp32, esp32c3, esp32s3))]
pub(crate) mod btdm;
#[cfg(any(esp32c2, esp32c6, esp32h2))]
pub(crate) mod npl;
use core::mem::MaybeUninit;
pub(crate) use ble::{ble_init, read_hci, read_next, send_hci};
#[cfg(any(esp32, esp32c3, esp32s3))]
use self::btdm as ble;
#[cfg(any(esp32c2, esp32c6, esp32h2))]
use self::npl as ble;
pub mod controller;
pub(crate) unsafe extern "C" fn malloc(size: u32) -> *mut crate::binary::c_types::c_void {
crate::compat::malloc::malloc(size as usize).cast()
}
#[cfg(any(esp32, esp32c3, esp32s3))]
pub(crate) unsafe extern "C" fn malloc_internal(size: u32) -> *mut crate::binary::c_types::c_void {
crate::compat::malloc::malloc(size as usize).cast()
}
pub(crate) unsafe extern "C" fn free(ptr: *mut crate::binary::c_types::c_void) {
crate::compat::malloc::free(ptr.cast())
}
static mut HCI_OUT_COLLECTOR: MaybeUninit<HciOutCollector> = MaybeUninit::uninit();
#[derive(PartialEq, Debug)]
enum HciOutType {
Unknown,
Acl,
Command,
}
struct HciOutCollector {
data: [u8; 256],
index: usize,
ready: bool,
kind: HciOutType,
}
impl HciOutCollector {
fn new() -> HciOutCollector {
HciOutCollector {
data: [0u8; 256],
index: 0,
ready: false,
kind: HciOutType::Unknown,
}
}
fn is_ready(&self) -> bool {
self.ready
}
fn push(&mut self, data: &[u8]) {
self.data[self.index..(self.index + data.len())].copy_from_slice(data);
self.index += data.len();
if self.kind == HciOutType::Unknown {
self.kind = match self.data[0] {
1 => HciOutType::Command,
2 => HciOutType::Acl,
_ => HciOutType::Unknown,
};
}
if !self.ready {
if self.kind == HciOutType::Command && self.index >= 4 {
if self.index == self.data[3] as usize + 4 {
self.ready = true;
}
} else if self.kind == HciOutType::Acl
&& self.index >= 5
&& self.index == (self.data[3] as usize) + ((self.data[4] as usize) << 8) + 5
{
self.ready = true;
}
}
}
fn reset(&mut self) {
self.index = 0;
self.ready = false;
self.kind = HciOutType::Unknown;
}
fn packet(&self) -> &[u8] {
&self.data[0..self.index]
}
}