diff options
| author | Dario Nieuwenhuis <[email protected]> | 2025-04-13 22:07:56 +0000 |
|---|---|---|
| committer | GitHub <[email protected]> | 2025-04-13 22:07:56 +0000 |
| commit | c52c7ec429e94db546ca97be7f1129cebdfdc99a (patch) | |
| tree | 57f83cb0dbf9d8b21fb0bc4aeea68946d6abaa3e | |
| parent | dd3ae39d425ee529b2bb4dea0b8f68f42d8ee604 (diff) | |
| parent | 642740b8cbff7099e452337c8fcb6fd78eb0567e (diff) | |
Merge pull request #4086 from 1-rafael-1/somebody-forgot-wifi-credentials-in-code
update WiFi credentials to placeholders
| -rw-r--r-- | examples/rp/src/bin/wifi_tcp_server.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/rp/src/bin/wifi_tcp_server.rs b/examples/rp/src/bin/wifi_tcp_server.rs index 14dbf4552..7e3c663fe 100644 --- a/examples/rp/src/bin/wifi_tcp_server.rs +++ b/examples/rp/src/bin/wifi_tcp_server.rs | |||
| @@ -28,8 +28,8 @@ bind_interrupts!(struct Irqs { | |||
| 28 | PIO0_IRQ_0 => InterruptHandler<PIO0>; | 28 | PIO0_IRQ_0 => InterruptHandler<PIO0>; |
| 29 | }); | 29 | }); |
| 30 | 30 | ||
| 31 | const WIFI_NETWORK: &str = "LadronDeWifi"; | 31 | const WIFI_NETWORK: &str = "ssid"; // change to your network SSID |
| 32 | const WIFI_PASSWORD: &str = "MBfcaedHmyRFE4kaQ1O5SsY8"; | 32 | const WIFI_PASSWORD: &str = "pwd"; // change to your network password |
| 33 | 33 | ||
| 34 | #[embassy_executor::task] | 34 | #[embassy_executor::task] |
| 35 | async fn cyw43_task(runner: cyw43::Runner<'static, Output<'static>, PioSpi<'static, PIO0, 0, DMA_CH0>>) -> ! { | 35 | async fn cyw43_task(runner: cyw43::Runner<'static, Output<'static>, PioSpi<'static, PIO0, 0, DMA_CH0>>) -> ! { |
