diff options
author | 2019-08-21 12:19:38 +0200 | |
---|---|---|
committer | 2019-08-21 12:19:38 +0200 | |
commit | 45f9faae9c51c8d84c939a9e00985388fc1d2cdf (patch) | |
tree | f36cce93510b8d2102470214712d435ab6a64326 /src | |
parent | 4132bae2a96f7bc7f1791a0b855376ead2ac1083 (diff) | |
download | rtic-45f9faae9c51c8d84c939a9e00985388fc1d2cdf.tar.gz rtic-45f9faae9c51c8d84c939a9e00985388fc1d2cdf.tar.zst rtic-45f9faae9c51c8d84c939a9e00985388fc1d2cdf.zip |
document #[app]
Diffstat (limited to 'src')
-rw-r--r-- | src/lib.rs | 8 |
1 files changed, 3 insertions, 5 deletions
@@ -1,6 +1,6 @@ //! Real Time For the Masses (RTFM) framework for ARM Cortex-M microcontrollers //! -//! **HEADS UP** This is an **alpha** pre-release; there may be breaking changes in the API and +//! **HEADS UP** This is an **beta** pre-release; there may be breaking changes in the API and //! semantics before a proper release is made. //! //! **IMPORTANT**: This crate is published as [`cortex-m-rtfm`] on crates.io but the name of the @@ -12,10 +12,8 @@ //! //! [here]: https://japaric.github.io/rtfm5/book/en/ //! -//! Don't forget to check the documentation of the [`#[app]`] attribute, which is the main component -//! of the framework. -//! -//! [`#[app]`]: ../cortex_m_rtfm_macros/attr.app.html +//! Don't forget to check the documentation of the `#[app]` attribute (listed under the reexports +//! section), which is the main component of the framework. //! //! # Minimum Supported Rust Version (MSRV) //! |