HAL crates

许多微控制器的 HAL crate 为各种外围设备提供了封装容器。通常,这些封装容器可以实现 embedded-hal 中的各种 trait。

  1. #![no_main]
  2. #![no_std]
  3. extern crate panic_halt as _;
  4. use cortex_m_rt::entry;
  5. use nrf52833_hal::gpio::{p0, Level};
  6. use nrf52833_hal::pac::Peripherals;
  7. use nrf52833_hal::prelude::*;
  8. #[entry]
  9. fn main() -> ! {
  10. let p = Peripherals::take().unwrap();
  11. // Create HAL wrapper for GPIO port 0.
  12. let gpio0 = p0::Parts::new(p.P0);
  13. // Configure GPIO 0 pins 21 and 28 as push-pull outputs.
  14. let mut col1 = gpio0.p0_28.into_push_pull_output(Level::High);
  15. let mut row1 = gpio0.p0_21.into_push_pull_output(Level::Low);
  16. // Set pin 28 low and pin 21 high to turn the LED on.
  17. col1.set_low().unwrap();
  18. row1.set_high().unwrap();
  19. loop {}
  20. }
  • set_lowset_highembedded_hal OutputPin trait 上的方法。
  • HAL crate 被广泛用于许多 Cortex-M 和 RISC-V 设备,包括各种 STM32、GD32、nRF、NXP、MSP430、AVR 和 PIC 微控制器。

使用以下命令运行该示例:

  1. cargo embed --bin hal