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
//! Items internal to the WASM framework or used to initialize it.
//!
//! Activity developers should not need to use these items directly
//! unless they are manually initializing the WASM framework instead
//! of using the default `init_and_run_async`.
//!
//! Many items in internal are exported for the WASM host.
pub
pub use HostEvent;
pub use block_on;
/// Initialize all WASM subsystems (logger, lights, buttons, executor, audio).
///
/// Called automatically by [`crate::init_and_run_async`]. Only call this directly
/// if you are manually driving the runtime instead of using that helper.
/// This is exported for the WASM host to read the SDK version at runtime.
pub static SDK_VERSION: u64 = ;
const