blob: a70cd93ab5fbb5edf62a420263d331345c8282e3 (
plain) (
blame)
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
|
//! Miscellaneous assembly instructions
/// Puts the processor in Debug state. Debuggers can pick this up as a "breakpoint".
///
/// Optionally, an "immediate" value (in the 0-255 range) can be passed to `bkpt!`. The debugger can
/// then read this value using the Program Counter (PC).
#[cfg(target_arch = "arm")]
#[macro_export]
macro_rules! bkpt {
() => {
asm!("bkpt" :::: "volatile");
};
($imm:expr) => {
asm!(concat!("bkpt #", stringify!($imm)) :::: "volatile");
};
}
/// Puts the processor in Debug state. Debuggers can pick this up as a "breakpoint".
///
/// Optionally, an "immediate" value (in the 0-255 range) can be passed to `bkpt!`. The debugger can
/// then read this value using the Program Counter (PC).
#[cfg(not(target_arch = "arm"))]
#[macro_export]
macro_rules! bkpt {
() => {
asm!("nop" :::: "volatile");
};
($e:expr) => {
asm!("nop" :::: "volatile");
};
}
/// Wait for event
pub unsafe fn wfe() {
match () {
#[cfg(target_arch = "arm")]
() => asm!("wfe" :::: "volatile"),
#[cfg(not(target_arch = "arm"))]
() => {}
}
}
/// Wait for interupt
pub unsafe fn wfi() {
match () {
#[cfg(target_arch = "arm")]
() => asm!("wfi" :::: "volatile"),
#[cfg(not(target_arch = "arm"))]
() => {}
}
}
/// A no-operation. Useful to stop delay loops being elided.
pub fn nop() {
asm!("nop" :::: "volatile");
}
|