blob: c82d45d3d7f26c97df58fd3f94f9f98d94188efe (
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
57
58
59
60
|
//! Miscellaneous assembly instructions
/// Puts the processor in Debug state. Debuggers can pick this up as a
/// "breakpoint".
///
/// NOTE calling `bkpt` when the processor is not connected to a debugger will
/// cause an exception
#[inline(always)]
pub fn bkpt() {
#[cfg(target_arch = "arm")]
unsafe {
asm!("bkpt"
:
:
:
: "volatile");
}
}
/// A no-operation. Useful to prevent delay loops from being optimized away.
pub fn nop() {
unsafe {
asm!("nop"
:
:
:
: "volatile");
}
}
/// Wait For Event
pub fn wfe() {
match () {
#[cfg(target_arch = "arm")]
() => unsafe {
asm!("wfe"
:
:
:
: "volatile")
},
#[cfg(not(target_arch = "arm"))]
() => {}
}
}
/// Wait For Interrupt
pub fn wfi() {
match () {
#[cfg(target_arch = "arm")]
() => unsafe{
asm!("wfi"
:
:
:
: "volatile")
},
#[cfg(not(target_arch = "arm"))]
() => {}
}
}
|