Docs fixups (#3342)

* esp-rs/esp-hal

* fix ieee802154 docs
This commit is contained in:
Scott Mabin 2025-04-07 13:13:08 +01:00 committed by GitHub
parent 70e3f2ca26
commit 06ab8ad8ad
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 3 additions and 6 deletions

View File

@ -63,7 +63,7 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v4
with:
repository: esp-hal/esp-hal
repository: esp-rs/esp-hal
ref: ${{ matrix.packages.tag }}
- name: Build documentation

View File

@ -282,12 +282,9 @@ fn apply_feature_rules(package: &Package, config: &Config) -> Vec<String> {
features.push("coex".to_owned());
}
}
Package::EspHalEmbassy => {
Package::EspHalEmbassy | Package::EspIeee802154 => {
features.push("esp-hal/unstable".to_owned());
}
Package::EspIeee802154 => {
features.push("esp-hal/unstable".to_owned());
}
},
_ => {}
}