flipperzero 0.3.0-alpha

Rust for Flipper Zero
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Furi API.

pub mod io;
pub mod message_queue;
pub mod sync;
pub mod thread;

use flipperzero_sys as sys;

/// Furi Result type.
pub type Result<T> = core::result::Result<T, Error>;
/// Furi Error type.
pub type Error = sys::furi::Status;