cyt2cl 0.0.1

Peripheral access crate for cyt2cl T2G family
Documentation
  • Coverage
  • 0%
    0 out of 1 items documented0 out of 0 items with examples
  • Size
  • Source code size: 8.8 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 286.39 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 1m 4s Average build duration of successful builds.
  • all releases: 1m 4s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • Repository
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • AthiraRamakrishna

Supported Device Family

cyt2cl

Supported Crates

crate svd version
cyt2cl_a 1.0.0

Using device meta-package crate in your project

In your own project's Cargo.toml:

[dependencies.cyt2cl]

version = "0.0.1"

features = ["<one of the supported revisions>", "rt", "critical-section"]

The rt feature is optional. See svd2rust for details.

The critical-section feature is optional. See critical-section for details.

Usage of device meta-package in your code:

use cyt2cl as pac;

let mut peripherals = pac::Peripherals::take().unwrap();

By default cyt2cl refers to the latest revision of the supported crates, if your project requires a specific revision, you can pass it as a feature in your project's cargo.toml file. This way of using meta package you dont have to change your project code each time you change the revision.

Resource

Documents