HAL ํฌ๋ ์ดํธ๋ค
๋ค์ํ ์ฃผ๋ณ ์ฅ์น์ ๋ํ ๋ํผ๋ฅผ ์ ๊ณตํ๋ HAL ํฌ๋ ์ดํธ๋ค์ด ์์ต๋๋ค. ์ด ํฌ๋ ์ดํธ๋ค์ ์ผ๋ฐ์ ์ผ๋ก embedded-hal
์ ํธ๋ ์์ ๊ตฌํํฉ๋๋ค.
#![no_main] #![no_std] extern crate panic_halt as _; use cortex_m_rt::entry; use nrf52833_hal::gpio::{p0, Level}; use nrf52833_hal::pac::Peripherals; use nrf52833_hal::prelude::*; #[entry] fn main() -> ! { let p = Peripherals::take().unwrap(); // Create HAL wrapper for GPIO port 0. let gpio0 = p0::Parts::new(p.P0); // Configure GPIO 0 pins 21 and 28 as push-pull outputs. let mut col1 = gpio0.p0_28.into_push_pull_output(Level::High); let mut row1 = gpio0.p0_21.into_push_pull_output(Level::Low); // Set pin 28 low and pin 21 high to turn the LED on. col1.set_low().unwrap(); row1.set_high().unwrap(); loop {} }
set_low
๋ฐset_high
๋embedded_hal
OutputPin
ํธ๋ ์์ ๋ฉ์๋์ ๋๋ค.- ๋ค์ํ STM32, GD32, nRF, NXP, MSP430, AVR, PIC ๋ง์ดํฌ๋ก์ปจํธ๋กค๋ฌ๋ฅผ ๋น๋กฏํ ๋ง์ Cortex-M ๋ฐ RISC-V ๊ธฐ๊ธฐ๋ฅผ ์ํ HAL ํฌ๋ ์ดํธ๊ฐ ์์ต๋๋ค
์๋ ๋ช ๋ น์ด๋ก ์์ ์ฝ๋๋ฅผ ์คํํ์ธ์.
cargo embed --bin hal