์ฃผ๋ณ๊ธฐ๊ธฐ ์ก์ธ์ค ํฌ๋ ์ดํธ
svd2rust
ํฌ๋ ์ดํธ๋ฅผ ์ด์ฉํ๋ฉด ๋ฉ๋ชจ๋ฆฌ ๋งคํ๋ ์ฃผ๋ณ์ฅ์น๋ฅผ ๊ธฐ์ ํ๋ CMSIS-SVD ํ์ผ๋ก๋ถํฐ Rust ๋ํผ๋ฅผ ์์ฑํ ์ ์์ต๋๋ค.
#![no_main] #![no_std] extern crate panic_halt as _; use cortex_m_rt::entry; use nrf52833_pac::Peripherals; #[entry] fn main() -> ! { let p = Peripherals::take().unwrap(); let gpio0 = p.P0; // Configure GPIO 0 pins 21 and 28 as push-pull outputs. gpio0.pin_cnf[21].write(|w| { w.dir().output(); w.input().disconnect(); w.pull().disabled(); w.drive().s0s1(); w.sense().disabled(); w }); gpio0.pin_cnf[28].write(|w| { w.dir().output(); w.input().disconnect(); w.pull().disabled(); w.drive().s0s1(); w.sense().disabled(); w }); // Set pin 28 low and pin 21 high to turn the LED on. gpio0.outclr.write(|w| w.pin28().clear()); gpio0.outset.write(|w| w.pin21().set()); loop {} }
- SVD(System View Description) ํ์ผ์ ์ผ๋ฐ์ ์ผ๋ก ์ค๋ฆฌ์ฝ ๊ณต๊ธ์
์ฒด์์ ์ ๊ณตํ๋ XML ํ์ผ๋ก, ๊ธฐ๊ธฐ์ ๋ฉ๋ชจ๋ฆฌ ๋งต์ ๊ธฐ์ ํฉ๋๋ค.
- ์ฃผ๋ณ๊ธฐ๊ธฐ, ๋ ์ง์คํฐ, ํ๋, ๊ฐ์ผ๋ก ๊ตฌ์ฑ๋๋ฉฐ ์ด๋ฆ, ์ค๋ช , ์ฃผ์ ๋ฑ์ด ํฌํจ๋ฉ๋๋ค.
- SVD ํ์ผ์๋ ๋ฒ๊ทธ๊ฐ ์์ ์ ์๊ณ ๋ถ์์ ํ๊ธฐ ๋๋ฌธ์, ์ด๋ฌํ ๋ฌธ์ ๋ค์ ํจ์นํ๋ ๋ค์ํ ํ๋ก์ ํธ๋ค์ด ์์ต๋๋ค.
cortex-m-rt
๋ ๋ฌด์๋ณด๋ค๋ ๋ฒกํฐ ํ ์ด๋ธ์ ์ ๊ณตํฉ๋๋ค.cargo install cargo-binutils
์ ์คํํ ํ,cargo objdump --bin pac -- -d --no-show-raw-insn
์ ์คํํ์ฌ ์์ฑ๋ ๋ฐ์ด๋๋ฆฌ์ ๋ด์ฉ์ ํ์ธํ ์ ์์ต๋๋ค.
์๋ ๋ช ๋ น์ด๋ก ์์ ์ฝ๋๋ฅผ ์คํํ์ธ์.
cargo embed --bin pac