aboutsummaryrefslogtreecommitdiff
path: root/embassy-rp
diff options
context:
space:
mode:
authorRob Wells <[email protected]>2025-06-16 13:11:46 +0100
committerRob Wells <[email protected]>2025-06-16 13:11:46 +0100
commit2613295111e47d8476e4b5b26517e7f7900a4ab8 (patch)
tree3714bf9d7ed1cab56ecc0f4c3f721c10e7bcc2cb /embassy-rp
parent56572ef0adffd6258adc10fb424e37a8b4ddc19c (diff)
embassy-rp: fix rom_data module documentation
Removes module doc comment markers that appeared in the generated documentation.
Diffstat (limited to 'embassy-rp')
-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