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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
#![no_std]
pub use embedded_hal as ehal;
#[cfg(feature = "embassy")]
pub use esp_hal_common::embassy;
#[doc(inline)]
pub use esp_hal_common::{
analog::adc::implementation as adc,
clock,
dma::{self, gdma},
efuse,
entry,
gpio,
i2c,
interrupt,
ledc,
macros,
peripherals,
prelude,
riscv,
sha,
spi,
system,
systimer,
timer,
trapframe,
uart,
Cpu,
Delay,
Rng,
Rtc,
Rwdt,
Uart,
};
pub use self::gpio::IO;
pub mod analog {
pub use esp_hal_common::analog::{AvailableAnalog, SarAdcExt};
}
extern "C" {
static mut _srwtext: u32;
static mut _erwtext: u32;
static mut _irwtext: u32;
static mut _ebss: u32;
static mut _sbss: u32;
}
#[cfg(feature = "direct-boot")]
#[doc(hidden)]
#[esp_hal_common::esp_riscv_rt::pre_init]
unsafe fn init() {
r0::init_data(&mut _srwtext, &mut _erwtext, &_irwtext);
}
#[allow(unreachable_code)]
#[export_name = "_mp_hook"]
#[doc(hidden)]
pub fn mp_hook() -> bool {
if cfg!(feature = "direct-boot") {
true
} else {
unsafe {
r0::zero_bss(&mut _sbss, &mut _ebss);
}
false
}
}
#[no_mangle]
extern "C" fn EspDefaultHandler(_interrupt: peripherals::Interrupt) {}