diff options
Diffstat (limited to 'examples')
| -rw-r--r-- | examples/rp/src/bin/pio_uart.rs | 1 | ||||
| -rw-r--r-- | examples/rp/src/bin/wifi_ap_tcp_server.rs | 2 | ||||
| -rw-r--r-- | examples/rp/src/bin/wifi_scan.rs | 2 | ||||
| -rw-r--r-- | examples/rp/src/bin/wifi_tcp_server.rs | 2 | ||||
| -rw-r--r-- | examples/stm32wl/src/bin/lora_lorawan.rs | 1 | ||||
| -rw-r--r-- | examples/stm32wl/src/bin/lora_p2p_receive.rs | 1 | ||||
| -rw-r--r-- | examples/stm32wl/src/bin/lora_p2p_send.rs | 1 |
7 files changed, 7 insertions, 3 deletions
diff --git a/examples/rp/src/bin/pio_uart.rs b/examples/rp/src/bin/pio_uart.rs index aa9e52cbd..45416c56b 100644 --- a/examples/rp/src/bin/pio_uart.rs +++ b/examples/rp/src/bin/pio_uart.rs | |||
| @@ -10,6 +10,7 @@ | |||
| 10 | #![no_main] | 10 | #![no_main] |
| 11 | #![feature(type_alias_impl_trait)] | 11 | #![feature(type_alias_impl_trait)] |
| 12 | #![feature(async_fn_in_trait)] | 12 | #![feature(async_fn_in_trait)] |
| 13 | #![allow(stable_features, unknown_lints, async_fn_in_trait)] | ||
| 13 | 14 | ||
| 14 | use defmt::{info, panic, trace}; | 15 | use defmt::{info, panic, trace}; |
| 15 | use embassy_executor::Spawner; | 16 | use embassy_executor::Spawner; |
diff --git a/examples/rp/src/bin/wifi_ap_tcp_server.rs b/examples/rp/src/bin/wifi_ap_tcp_server.rs index 98cae53f6..b5344c185 100644 --- a/examples/rp/src/bin/wifi_ap_tcp_server.rs +++ b/examples/rp/src/bin/wifi_ap_tcp_server.rs | |||
| @@ -5,7 +5,7 @@ | |||
| 5 | #![no_main] | 5 | #![no_main] |
| 6 | #![feature(type_alias_impl_trait)] | 6 | #![feature(type_alias_impl_trait)] |
| 7 | #![feature(async_fn_in_trait)] | 7 | #![feature(async_fn_in_trait)] |
| 8 | #![allow(incomplete_features)] | 8 | #![allow(stable_features, unknown_lints, async_fn_in_trait)] |
| 9 | 9 | ||
| 10 | use core::str::from_utf8; | 10 | use core::str::from_utf8; |
| 11 | 11 | ||
diff --git a/examples/rp/src/bin/wifi_scan.rs b/examples/rp/src/bin/wifi_scan.rs index dbbbf6c81..f2acaf3e8 100644 --- a/examples/rp/src/bin/wifi_scan.rs +++ b/examples/rp/src/bin/wifi_scan.rs | |||
| @@ -5,7 +5,7 @@ | |||
| 5 | #![no_main] | 5 | #![no_main] |
| 6 | #![feature(type_alias_impl_trait)] | 6 | #![feature(type_alias_impl_trait)] |
| 7 | #![feature(async_fn_in_trait)] | 7 | #![feature(async_fn_in_trait)] |
| 8 | #![allow(incomplete_features)] | 8 | #![allow(stable_features, unknown_lints, async_fn_in_trait)] |
| 9 | 9 | ||
| 10 | use core::str; | 10 | use core::str; |
| 11 | 11 | ||
diff --git a/examples/rp/src/bin/wifi_tcp_server.rs b/examples/rp/src/bin/wifi_tcp_server.rs index c00fff216..4e74ad117 100644 --- a/examples/rp/src/bin/wifi_tcp_server.rs +++ b/examples/rp/src/bin/wifi_tcp_server.rs | |||
| @@ -5,7 +5,7 @@ | |||
| 5 | #![no_main] | 5 | #![no_main] |
| 6 | #![feature(type_alias_impl_trait)] | 6 | #![feature(type_alias_impl_trait)] |
| 7 | #![feature(async_fn_in_trait)] | 7 | #![feature(async_fn_in_trait)] |
| 8 | #![allow(incomplete_features)] | 8 | #![allow(stable_features, unknown_lints, async_fn_in_trait)] |
| 9 | 9 | ||
| 10 | use core::str::from_utf8; | 10 | use core::str::from_utf8; |
| 11 | 11 | ||
diff --git a/examples/stm32wl/src/bin/lora_lorawan.rs b/examples/stm32wl/src/bin/lora_lorawan.rs index 35a6a8425..226e6786f 100644 --- a/examples/stm32wl/src/bin/lora_lorawan.rs +++ b/examples/stm32wl/src/bin/lora_lorawan.rs | |||
| @@ -4,6 +4,7 @@ | |||
| 4 | #![no_main] | 4 | #![no_main] |
| 5 | #![macro_use] | 5 | #![macro_use] |
| 6 | #![feature(type_alias_impl_trait, async_fn_in_trait)] | 6 | #![feature(type_alias_impl_trait, async_fn_in_trait)] |
| 7 | #![allow(stable_features, unknown_lints, async_fn_in_trait)] | ||
| 7 | 8 | ||
| 8 | use defmt::info; | 9 | use defmt::info; |
| 9 | use embassy_executor::Spawner; | 10 | use embassy_executor::Spawner; |
diff --git a/examples/stm32wl/src/bin/lora_p2p_receive.rs b/examples/stm32wl/src/bin/lora_p2p_receive.rs index 1c485d739..a3bb0c0f9 100644 --- a/examples/stm32wl/src/bin/lora_p2p_receive.rs +++ b/examples/stm32wl/src/bin/lora_p2p_receive.rs | |||
| @@ -4,6 +4,7 @@ | |||
| 4 | #![no_main] | 4 | #![no_main] |
| 5 | #![macro_use] | 5 | #![macro_use] |
| 6 | #![feature(type_alias_impl_trait, async_fn_in_trait)] | 6 | #![feature(type_alias_impl_trait, async_fn_in_trait)] |
| 7 | #![allow(stable_features, unknown_lints, async_fn_in_trait)] | ||
| 7 | 8 | ||
| 8 | use defmt::info; | 9 | use defmt::info; |
| 9 | use embassy_executor::Spawner; | 10 | use embassy_executor::Spawner; |
diff --git a/examples/stm32wl/src/bin/lora_p2p_send.rs b/examples/stm32wl/src/bin/lora_p2p_send.rs index 3afa78acb..08dd0845e 100644 --- a/examples/stm32wl/src/bin/lora_p2p_send.rs +++ b/examples/stm32wl/src/bin/lora_p2p_send.rs | |||
| @@ -4,6 +4,7 @@ | |||
| 4 | #![no_main] | 4 | #![no_main] |
| 5 | #![macro_use] | 5 | #![macro_use] |
| 6 | #![feature(type_alias_impl_trait, async_fn_in_trait)] | 6 | #![feature(type_alias_impl_trait, async_fn_in_trait)] |
| 7 | #![allow(stable_features, unknown_lints, async_fn_in_trait)] | ||
| 7 | 8 | ||
| 8 | use defmt::info; | 9 | use defmt::info; |
| 9 | use embassy_executor::Spawner; | 10 | use embassy_executor::Spawner; |
