From f54ba5a48e8783c673488c9107a3549ec35bd45e Mon Sep 17 00:00:00 2001 From: Ulf Lilleengen Date: Thu, 13 Feb 2025 09:06:54 +0100 Subject: [PATCH] docs: fix esp wording and mention trouble Fixes #3831 --- README.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 8952b0358..374133c4b 100644 --- a/README.md +++ b/README.md @@ -13,11 +13,10 @@ Rust's async/await allows - **Hardware Abstraction Layers** - HALs implement safe, idiomatic Rust APIs to use the hardware capabilities, so raw register manipulation is not needed. The Embassy project maintains HALs for select hardware, but you can still use HALs from other projects with Embassy. - embassy-stm32, for all STM32 microcontroller families. - - embassy-nrf, for the Nordic Semiconductor nRF52, nRF53, nRF91 series. - - embassy-rp, for the Raspberry Pi RP2040 microcontroller. + - embassy-nrf, for the Nordic Semiconductor nRF52, nRF53, nRF54 and nRF91 series. + - embassy-rp, for the Raspberry Pi RP2040 and RP23xx microcontrollers. - esp-rs, for the Espressif Systems ESP32 series of chips. - - Embassy HAL support for Espressif chips is being developed in the [esp-rs/esp-hal](https://github.com/esp-rs/esp-hal) repository. - - Async WiFi, Bluetooth and ESP-NOW is being developed in the [esp-rs/esp-wifi](https://github.com/esp-rs/esp-wifi) repository. + - Embassy HAL support for Espressif chips, as well as Async WiFi, Bluetooth and ESP-NOW, is being developed in the [esp-rs/esp-hal](https://github.com/esp-rs/esp-hal) repository. - ch32-hal, for the WCH 32-bit RISC-V(CH32V) series of chips. - **Time that Just Works** - @@ -32,9 +31,10 @@ Easily build devices with years of battery life. The async executor automaticall - **Networking** - The embassy-net network stack implements extensive networking functionality, including Ethernet, IP, TCP, UDP, ICMP and DHCP. Async drastically simplifies managing timeouts and serving multiple connections concurrently. -- **Bluetooth** - -The nrf-softdevice crate provides Bluetooth Low Energy 4.x and 5.x support for nRF52 microcontrollers. -The embassy-stm32-wpan crate provides Bluetooth Low Energy 5.x support for stm32wb microcontrollers. +- **Bluetooth** + - The trouble crate provides a Bluetooth Low Energy 4.x and 5.x Host that runs on any microcontroller implementing the bt-hci traits (currently `nRF52`, `rp2040`, `rp23xx` and `esp32` and `serial` controllers are supported). + - The nrf-softdevice crate provides Bluetooth Low Energy 4.x and 5.x support for nRF52 microcontrollers. + - The embassy-stm32-wpan crate provides Bluetooth Low Energy 5.x support for stm32wb microcontrollers. - **LoRa** - The lora-rs project provides an async LoRa and LoRaWAN stack that works well on Embassy.