blob: a4aba5737939fceb0dcb964a38e1f17c4752258f (
plain)
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
|
#, Section 2.8.2.1:
> The Bootrom contains a number of public functions that provide useful
> RP2040 functionality that might be needed in the absence of any other code
> on the device, as well as highly optimized versions of certain key
> functionality that would otherwise have to take up space in most user
> binaries.
"
)]
# of the
RP2350 datasheet:
> Whilst some ROM space is dedicated to the implementation of the boot
> sequence and USB/UART boot interfaces, the bootrom also contains public
> functions that provide useful RP2350 functionality that may be useful for
> any code or runtime running on the device
"
)]
#[cfg_attr(feature = "rp2040", path = "rp2040.rs")]
#[cfg_attr(feature = "_rp235x", path = "rp235x.rs")]
mod inner;
pub use inner::*;
|