blob: de4ab33bece50e7a28b677ae57f33a6ea21bcef3 (
plain)
1
2
3
4
5
6
7
8
9
10
|
= Hardware Abstraction Layer (HAL)
Embassy provides HALs for several microcontroller families:
* `embassy-nrf` for the nRF microcontrollers from Nordic Semiconductor
* `embassy-stm32` for STM32 microcontrollers from ST Microelectronics
* `embassy-rp` for the Raspberry Pi RP2040 microcontrollers
These HALs implement async/await functionality for most peripherals while also implementing the
async traits in `embedded-hal-async`. You can also use these HALs with another executor.
|