diff --git a/va108xx-hal/CHANGELOG.md b/va108xx-hal/CHANGELOG.md index a9bf921..c5db821 100644 --- a/va108xx-hal/CHANGELOG.md +++ b/va108xx-hal/CHANGELOG.md @@ -8,6 +8,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ## [unreleased] +## [v0.9.0] 2024-10-07 + +- Deleted some HAL re-exports in the PWM module + ## [v0.8.0] 2024-09-30 ## Changed diff --git a/va108xx-hal/src/pwm.rs b/va108xx-hal/src/pwm.rs index a0933f8..ec1ce1b 100644 --- a/va108xx-hal/src/pwm.rs +++ b/va108xx-hal/src/pwm.rs @@ -9,11 +9,11 @@ use core::convert::Infallible; use core::marker::PhantomData; use crate::pac; +use crate::time::Hertz; use crate::timer::{ TimAndPinRegister, TimDynRegister, TimPin, TimRegInterface, ValidTim, ValidTimAndPin, }; use crate::{clock::enable_peripheral_clock, gpio::DynPinId}; -pub use crate::{gpio::PinId, time::Hertz}; const DUTY_MAX: u16 = u16::MAX;