cyw43_firmware/
lib.rs

1#![doc = include_str!("../README.md")]
2#![no_std]
3
4/// CYW43xx SoC WiFi firmware blob
5///
6/// # Important
7/// Please note the licensing information from the [README.md](../README.md#license), as well as the licensing
8/// information from <https://github.com/georgerobotics/cyw43-driver/tree/main/firmware>.
9#[cfg(feature = "wifi")]
10pub const CYW43_43439A0: &[u8; 231077] = include_bytes!("../dist/cyw43-firmware/43439A0.bin");
11
12/// CYW43xx SoC WiFi firmware country location matrix blob
13///
14/// # Important
15/// Please note the licensing information from the [README.md](../README.md#license), as well as the licensing
16/// information from <https://github.com/georgerobotics/cyw43-driver/tree/main/firmware>.
17#[cfg(feature = "wifi")]
18pub const CYW43_43439A0_CLM: &[u8; 984] = include_bytes!("../dist/cyw43-firmware/43439A0_clm.bin");
19
20/// CYW43xx SoC bluetooth firmware blob
21///
22/// # Important
23/// Please note the licensing information from the [README.md](../README.md#license), as well as the licensing
24/// information from <https://github.com/georgerobotics/cyw43-driver/tree/main/firmware>.
25#[cfg(feature = "bluetooth")]
26pub const CYW43_43439A0_BTFW: &[u8; 6164] = include_bytes!("../dist/cyw43-firmware/43439A0_btfw.bin");