375c87820f
after it
23 lines
1.1 KiB
Rust
23 lines
1.1 KiB
Rust
// rustfmt-wrap_comments: true
|
|
// rustfmt-max_width: 79
|
|
|
|
//! CMSIS: Cortex Microcontroller Software Interface Standard
|
|
//!
|
|
//! The version 5 of the standard can be found at:
|
|
//!
|
|
//! http://arm-software.github.io/CMSIS_5/Core/html/index.html
|
|
//!
|
|
//! The API reference of the standard can be found at:
|
|
//!
|
|
//! - example -- http://example.org -- something something something something something something
|
|
//! - something something something something something something more -- http://example.org
|
|
//! - http://example.org/something/something/something/something/something/something and the rest
|
|
//! - Core function access -- http://arm-software.github.io/CMSIS_5/Core/html/group__Core__Register__gr.html
|
|
//! - Intrinsic functions for CPU instructions -- http://arm-software.github.io/CMSIS_5/Core/html/group__intrinsic__CPU__gr.html
|
|
//! - Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Vestibulum sem lacus, commodo vitae.
|
|
//!
|
|
//! The reference C implementation used as the base of this Rust port can be
|
|
//! found at
|
|
//!
|
|
//! https://github.com/ARM-software/CMSIS_5/blob/5.3.0/CMSIS/Core/Include/cmsis_gcc.h
|