small docs improvements #6

Merged
muellerr merged 1 commits from small-docs-improvements into main 2025-06-26 20:32:21 +02:00
3 changed files with 8 additions and 0 deletions

3
zynq7000-rt/docs.sh Executable file
View File

@ -0,0 +1,3 @@
#!/bin/sh
export RUSTDOCFLAGS="--cfg docsrs --generate-link-to-definition -Z unstable-options"
cargo +nightly doc --open

3
zynq7000/docs.sh Executable file
View File

@ -0,0 +1,3 @@
#!/bin/sh
export RUSTDOCFLAGS="--cfg docsrs --generate-link-to-definition -Z unstable-options"
cargo +nightly doc --open

View File

@ -6,6 +6,8 @@
//! //!
//! This crate is purposely kept low-level to allow building higher level abstractions like HALs //! This crate is purposely kept low-level to allow building higher level abstractions like HALs
//! on top of it. //! on top of it.
//! [The Zynq7000 HAL library](https://egit.irs.uni-stuttgart.de/rust/zynq7000-rs/src/branch/main/zynq7000-hal)
//! contains such a HAL which builds on this PAC.
#![no_std] #![no_std]
use core::sync::atomic::{AtomicBool, Ordering}; use core::sync::atomic::{AtomicBool, Ordering};