aboutsummaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorDaniel Bevenius <[email protected]>2022-08-20 10:49:27 +0200
committerDaniel Bevenius <[email protected]>2022-08-20 10:52:45 +0200
commit6b4555a6a70f8c10755198b69e7cf085c1a53fce (patch)
tree400931fc2134d66bdf36876a0404c7fcd6362d7d /examples
parentf76815d642064b5ed5b1673e4a386e2747813f20 (diff)
Add comments about Country Locale Matrix (CLM)
This commit add comments about what CLM stands for. The motivation of this is that I think it helps understanding the code for users who are new to the codebase (like me).
Diffstat (limited to 'examples')
-rw-r--r--examples/rpi-pico-w/src/main.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/rpi-pico-w/src/main.rs b/examples/rpi-pico-w/src/main.rs
index 91f087262..569c9bf4c 100644
--- a/examples/rpi-pico-w/src/main.rs
+++ b/examples/rpi-pico-w/src/main.rs
@@ -42,7 +42,7 @@ async fn net_task(stack: &'static Stack<cyw43::NetDevice<'static>>) -> ! {
42async fn main(spawner: Spawner, p: Peripherals) { 42async fn main(spawner: Spawner, p: Peripherals) {
43 info!("Hello World!"); 43 info!("Hello World!");
44 44
45 // Include the WiFi firmware and CLM. 45 // Include the WiFi firmware and Country Locale Matrix (CLM) blobs.
46 let fw = include_bytes!("../../../firmware/43439A0.bin"); 46 let fw = include_bytes!("../../../firmware/43439A0.bin");
47 let clm = include_bytes!("../../../firmware/43439A0_clm.bin"); 47 let clm = include_bytes!("../../../firmware/43439A0_clm.bin");
48 48