mirror of
https://github.com/embassy-rs/embassy.git
synced 2024-11-22 14:53:03 +00:00
d769e562c0
* Remove traits section now that we have embedded-hal-async and refer to it. * Explanation that embassy is multiple things. * Bootloader description image
11 lines
484 B
Plaintext
11 lines
484 B
Plaintext
= 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.
|