Rustをやっていく
Install Rust - Rust Programming Language
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
compile
sharo@kirima:~$ rustc hello.rs -o hello sharo@kirima:~$ ./hello Hello, world!
cargo
sharo@kirima:~/Github/test_for_rust_on_ubuntu_20p04$ cargo new hello Created binary (application) `hello` package sharo@kirima:~/Github/test_for_rust_on_ubuntu_20p04$ cd hello/ sharo@kirima:~/Github/test_for_rust_on_ubuntu_20p04/hello$ cargo build Compiling hello v0.1.0 (/home/sharo/Github/test_for_rust_on_ubuntu_20p04/hello) Finished dev [unoptimized + debuginfo] target(s) in 0.31s sharo@kirima:~/Github/test_for_rust_on_ubuntu_20p04/hello$ cargo run Finished dev [unoptimized + debuginfo] target(s) in 0.02s Running `target/debug/hello` Hello, world!
GitHub - takurx/test_for_rust_on_ubuntu_20p04: test for Rust on ubuntu 20.04
Ref.
GitHub - nrf-rs/nrf52832-pac: Peripheral Access Crate for the nRF52832 microcontroller
nrf-hal/boards at master · nrf-rs/nrf-hal · GitHub
Embedded Rust - nrf52840 programming : rust
組込み/ベアメタルRustクックブック(電子版) - sabizen - BOOTH