1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
#![no_std]
#![cfg_attr(
not(test),
deny(
clippy::indexing_slicing,
clippy::unwrap_used,
clippy::expect_used,
clippy::panic,
clippy::exhaustive_structs,
clippy::exhaustive_enums,
missing_debug_implementations,
)
)]
#![allow(clippy::upper_case_acronyms)]
#![cfg_attr(target_os = "none", feature(alloc_error_handler))]
extern crate icu_capi;
#[cfg(target_os = "none")]
mod stuff {
extern crate alloc;
use alloc::alloc::Layout;
use core::panic::PanicInfo;
use cortex_m::asm;
use freertos_rust::FreeRtosAllocator;
#[global_allocator]
static GLOBAL: FreeRtosAllocator = FreeRtosAllocator;
#[alloc_error_handler]
fn alloc_error(_layout: Layout) -> ! {
asm::bkpt();
loop {}
}
#[cfg(target_os = "none")]
#[panic_handler]
fn panic(_info: &PanicInfo) -> ! {
loop {}
}
}
#[cfg(not(target_os = "none"))]
extern crate std as rust_std;