rns-embedded-runtime 0.5.1

Runtime support layer for embedded Reticulum transports and alloc-backed targets.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#![cfg_attr(not(feature = "std"), no_std)]

extern crate alloc;

pub mod ble;

pub mod constants;

pub mod node;

#[cfg(feature = "std")]
pub mod tcp;

include!("lib_parts/module_prelude.rs");

include!("lib_parts/config.rs");