small docs improvements
Some checks are pending
ci / Check build (push) Waiting to run
ci / Check formatting (push) Waiting to run
ci / Check Documentation Build (push) Waiting to run
ci / Clippy (push) Waiting to run
ci / Check build (pull_request) Waiting to run
ci / Check formatting (pull_request) Waiting to run
ci / Check Documentation Build (pull_request) Waiting to run
ci / Clippy (pull_request) Waiting to run

This commit is contained in:
2025-06-26 20:31:53 +02:00
parent a1a25e1a7c
commit 138cbc5ea7
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};