Skip to content

Peripheral Access Crates for MSP430G2XX Devices

Notifications You must be signed in to change notification settings

cr1901/msp430g2xx

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

msp430g2xx

msp430g2xx is the overarching Peripheral Access Crate (PAC) for using Rust with the MSP430G2xx series of microcontrollers. The crate provides a safe API to access peripherals and interrupt vectors

msp430g2xx is automatically generated using a combination of svd2rust and msp430gen. See the msp430 section of svd2rust and the README.md of the msp430_svd/msp430gen repository for details.

Usage

In your application's Cargo.toml:

[dependencies.msp430g2xx]
version = "0.5.0"
features = ["rt", "$FAMILY"]

The rt feature enables interrupt vectors, and is, in practice, required. See the rt section of the svd2rust docs for details.

$FAMILY is one of the following features, which represent groups of devices with the same exact set of peripherals:

msp430g2x01, msp430g2x02, msp430g2x03, msp430g2x10, msp430g2x30, msp430g2x11, msp430g2x21, msp430g2x31, msp430g2x12, msp430g2x32, msp430g2x52, msp430g2x13, msp430g2x33, msp430g2x53, msp430g2x44, msp430g2x55.

With a given feature, the x represents the flash size. This has no bearing on peripheral layout/types, or interrupt vectors, or types. Since other memory layout details are generally not kept inside an SVD file, each device which differs only in flash size can share the same SVD file.

For instance, an application targeting the MSP430G2211 part, and another application targeting the MSP430G2111 part would both enable the msp4302x11 feature; only their memory.x will differ.

At present, $FAMILY features are mutually exclusive. The build will fail if none of or more than one of the $FAMILY features is selected. cargo discourages this, but it's commonly accepted in embedded Rust. Perhaps Feature Precedence could be possible in the future.

About

Peripheral Access Crates for MSP430G2XX Devices

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published