3 releases (breaking)
0.3.0 | Sep 30, 2024 |
---|---|
0.2.0 | Sep 18, 2024 |
0.1.0 | Jul 1, 2024 |
#1746 in Embedded development
365 downloads per month
Used in vorago-peb1
290KB
6.5K
SLoC
HAL for the Vorago VA416xx MCU family
This repository contains the Hardware Abstraction Layer (HAL), which is an additional hardware abstraction on top of the peripheral access API.
It is the result of reading the datasheet for the device and encoding a type-safe layer over the raw PAC. This crate also implements traits specified by the embedded-hal project, making it compatible with various drivers in the embedded rust ecosystem.
You have to enable one of the following device features to use this crate depending on which chip you are using:
va41630
va41629
va41628
va41620
Building
Building an application requires the thumbv7em-none-eabihf
cross-compiler toolchain.
If you have not installed it yet, you can do so with
rustup target add thumbv7em-none-eabihf
After that, you can use cargo build
to build the development version of the crate.
If you have not done this yet, it is recommended to read some of the excellent resources available to learn Rust:
Setting up your own binary crate
If you have a custom board, you might be interested in setting up a new binary crate for your project. These steps aim to provide a complete list to get a binary crate working to flash your custom board.
The hello world of embedded development is usually to blinky a LED. This example is contained within the examples folder.
-
Set up your Rust cross-compiler if you have not done so yet. See more in the build chapter
-
Create a new binary crate with
cargo init
-
To ensure that
cargo build
cross-compiles, it is recommended to create a.cargo/config.toml
file. You can use this sample file as a starting point. -
Copy the
memory.x
file into your project. This file contains information required by the linker. -
Copy the
blinky.rs
file to thesrc/main.rs
file in your binary crate -
You need to add some dependencies to your
Cargo.toml
file[dependencies] cortex-m = "<Compatible Version>" cortex-m-rt = "<Compatible Version>" panic-halt = "<Compatible Version>" embedded-hal = "<Compatible Version>" [dependencies.va416xx-hal] version = "<Most Recent Version>" features = ["va41630"]
-
Build the application with
cargo build
-
Flashing the board might work differently for different boards and there is usually more than one way. You can find example instructions in primary README.
Dependencies
~3.5MB
~74K SLoC