aboutsummaryrefslogtreecommitdiff
path: root/embassy-rp/src/rom_data/mod.rs
diff options
context:
space:
mode:
author1-rafael-1 <[email protected]>2025-09-15 20:07:18 +0200
committer1-rafael-1 <[email protected]>2025-09-15 20:07:18 +0200
commit6bb3d2c0720fa082f27d3cdb70f516058497ec87 (patch)
tree5a1e255cff999b00800f203b91a759c720c973e5 /embassy-rp/src/rom_data/mod.rs
parenteb685574601d98c44faed9a3534d056199b46e20 (diff)
parent92a6fd2946f2cbb15359290f68aa360953da2ff7 (diff)
Merge branch 'main' into rp2040-rtc-alarm
Diffstat (limited to 'embassy-rp/src/rom_data/mod.rs')
-rw-r--r--embassy-rp/src/rom_data/mod.rs36
1 files changed, 18 insertions, 18 deletions
diff --git a/embassy-rp/src/rom_data/mod.rs b/embassy-rp/src/rom_data/mod.rs
index e5fcf8e3c..a4aba5737 100644
--- a/embassy-rp/src/rom_data/mod.rs
+++ b/embassy-rp/src/rom_data/mod.rs
@@ -1,29 +1,29 @@
1#![cfg_attr( 1#![cfg_attr(
2 feature = "rp2040", 2 feature = "rp2040",
3 doc = r" 3 doc = r"
4//! Functions and data from the RPI Bootrom. 4Functions and data from the RPI Bootrom.
5//! 5
6//! From the [RP2040 datasheet](https://datasheets.raspberrypi.org/rp2040/rp2040-datasheet.pdf), Section 2.8.2.1: 6From the [RP2040 datasheet](https://datasheets.raspberrypi.org/rp2040/rp2040-datasheet.pdf), Section 2.8.2.1:
7//! 7
8//! > The Bootrom contains a number of public functions that provide useful 8> The Bootrom contains a number of public functions that provide useful
9//! > RP2040 functionality that might be needed in the absence of any other code 9> RP2040 functionality that might be needed in the absence of any other code
10//! > on the device, as well as highly optimized versions of certain key 10> on the device, as well as highly optimized versions of certain key
11//! > functionality that would otherwise have to take up space in most user 11> functionality that would otherwise have to take up space in most user
12//! > binaries. 12> binaries.
13" 13"
14)] 14)]
15#![cfg_attr( 15#![cfg_attr(
16 feature = "_rp235x", 16 feature = "_rp235x",
17 doc = r" 17 doc = r"
18//! Functions and data from the RPI Bootrom. 18Functions and data from the RPI Bootrom.
19//! 19
20//! From [Section 5.4](https://rptl.io/rp2350-datasheet#section_bootrom) of the 20From [Section 5.4](https://rptl.io/rp2350-datasheet#section_bootrom) of the
21//! RP2350 datasheet: 21RP2350 datasheet:
22//! 22
23//! > Whilst some ROM space is dedicated to the implementation of the boot 23> Whilst some ROM space is dedicated to the implementation of the boot
24//! > sequence and USB/UART boot interfaces, the bootrom also contains public 24> sequence and USB/UART boot interfaces, the bootrom also contains public
25//! > functions that provide useful RP2350 functionality that may be useful for 25> functions that provide useful RP2350 functionality that may be useful for
26//! > any code or runtime running on the device 26> any code or runtime running on the device
27" 27"
28)] 28)]
29 29