From 64003cdfd60439195d75b4d510d3027c463fdb0a Mon Sep 17 00:00:00 2001 From: Scott Mabin Date: Thu, 2 Mar 2023 11:36:41 +0000 Subject: [PATCH] Add embassy-esp README --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index 938f2f4a6..6d5e75ead 100644 --- a/README.md +++ b/README.md @@ -14,6 +14,9 @@ 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. + - 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. - **Time that Just Works** - No more messing with hardware timers. embassy_time provides Instant, Duration and Timer types that are globally available and never overflow.