pac25 0.1.2

Device support crates for PAC25 devices
Documentation
# pac25
This crate provides an autogenerated API for access to PAC25 peripherals.
The API is generated using [svd2rust] with patched svd files containing
extensive type-safe support. For more information please see the [main repo].

Refer to the [documentation] for full details.

[svd2rust]: https://github.com/rust-embedded/svd2rust
[main repo]: https://github.com/pac-rs/pac-rs
[documentation]: https://docs.rs/pac25/latest/pac25/

## Usage
Each device supported by this crate is behind a feature gate so that you only
compile the device(s) you want. To use, in your Cargo.toml:

```toml
[dependencies.pac25]
version = "0.1.2"
features = ["pac25140"]
```

The `rt` feature is enabled by default and brings in support for `cortex-m-rt`.
To disable, specify `default-features = false` in `Cargo.toml`.

In your code:

```rust
use pac25::pac25140;

let mut peripherals = pac25140::Peripherals::take().unwrap();
let gpioa = &peripherals.GPIOA;
gpioa.out.modify(|_, w| unsafe { w.bits(0x1) });
```

For full details on the autogenerated API, please see:
https://docs.rs/svd2rust/0.30.1/svd2rust/#peripheral-api

## Supported Devices

| Module | Devices | Links |
|:------:|:-------:|:-----:|
| pac25xxx | pac25140 | [da008611](https://www.qorvo.com/products/d/da008611), [qorvo.com](https://www.qorvo.com/products/p/PAC25140) |