blob: 004c4d3fcd14c362963a5634d02eb398fae26e0a [file] [log] [blame]
#![feature(
asm,
alloc_error_handler,
core_intrinsics,
lang_items,
naked_functions,
ptr_offset_from
)]
#![no_std]
extern crate alloc;
mod callback;
pub mod adc;
pub mod ble_composer;
pub mod ble_parser;
pub mod buttons;
pub mod console;
pub mod debug;
pub mod electronics;
pub mod futures;
pub mod gpio;
pub mod led;
pub mod memop;
pub mod result;
pub mod rng;
pub mod sensors;
pub mod shared_memory;
pub mod simple_ble;
pub mod temperature;
pub mod timer;
pub mod unwind_symbols;
#[cfg(any(target_arch = "arm", target_arch = "riscv32"))]
pub mod entry_point;
#[cfg(any(target_arch = "arm", target_arch = "riscv32"))]
mod lang_items;
#[cfg(any(target_arch = "arm", target_arch = "riscv32"))]
pub mod syscalls;
#[cfg(not(any(target_arch = "arm", target_arch = "riscv32")))]
#[path = "syscalls_mock.rs"]
mod syscalls;
#[cfg(any(target_arch = "arm", target_arch = "riscv32"))]
#[global_allocator]
static ALLOCATOR: linked_list_allocator::LockedHeap = linked_list_allocator::LockedHeap::empty();
// Dummy structure to force importing the panic_handler and other no_std elements when nothing else
// is imported.
pub struct LibTock;