7b2a255872
The source files are unreadable because they're not fmt'd, and they take up a LOT of space when generating docs for all 1200 chips because they don't deduplicate.
17 lines
326 B
Rust
17 lines
326 B
Rust
#![no_std]
|
|
#![allow(non_snake_case)]
|
|
#![allow(unused)]
|
|
#![allow(non_camel_case_types)]
|
|
#![doc(html_no_source)]
|
|
|
|
pub mod common;
|
|
|
|
#[cfg(feature = "pac")]
|
|
include!(env!("STM32_METAPAC_PAC_PATH"));
|
|
|
|
#[cfg(feature = "metadata")]
|
|
pub mod metadata {
|
|
include!("metadata.rs");
|
|
include!(env!("STM32_METAPAC_METADATA_PATH"));
|
|
}
|