Skip to content

Commit

Permalink
Delete allocatore_api feature and add comments about Rust stable chan…
Browse files Browse the repository at this point in the history
…nel. (#50)
  • Loading branch information
JalonWong committed Mar 21, 2023
1 parent 698a1f1 commit 091340a
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions freertos-rust/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
#![cfg_attr(feature = "allocator", feature(allocator_api))]
//! # FreeRTOS for Rust
//!
//! Rust interface for the FreeRTOS embedded operating system. Requires nightly Rust if the allocator is used (which is the default).
//! Rust interface for the FreeRTOS embedded operating system.
//! It is assumed that dynamic memory allocation is provided on the target system.
//! For Rust versions 1.68 and later, the stable channel can be used.
//! Prior to version 1.68, the nightly channel is required along with
//! enabling the `alloc_error_handler` feature.
//!
//! This library interfaces with FreeRTOS using a C shim library which provides function
//! wrappers for FreeRTOS macros. The compiled Rust application should be linked to the
Expand Down

0 comments on commit 091340a

Please sign in to comment.