embassy-stm32

Crates

git

Versions

stm32g474cb

Flavors

BridgeConverter

Struct BridgeConverter 

Source
pub struct BridgeConverter<TIM, PSCL> { /* private fields */ }
Expand description

Fixed-frequency bridge converter driver.

Implementations§

Source§

impl<TIM, PSCL: HrtimPrescaler> BridgeConverter<TIM, PSCL>
where TIM: InstanceX + HrPwmAdvExt<PreloadSource = PreloadSource> + HrPwmAdvExt, HrTim<TIM, PSCL, NoDma, NoDma>: HrTimer,

Source

pub fn new<P1, P2>( timer: TIM, pin1: P1, pin2: P2, frequency: Hertz, prescaler: PSCL, hr_control: &mut HrPwmControl, ) -> Self
where P1: Output1Pin<TIM>, P2: Output2Pin<TIM>, HrPwmBuilder<TIM, PSCL, PreloadSource, P1, P2>: HrPwmBuilderExt<TIM, PSCL, P1, P2>,

Create a new HRTIM bridge converter driver.

Source

pub fn start(&mut self, hr_control: &mut HrPwmCtrl)

Start HRTIM.

Source

pub fn stop(&mut self, hr_control: &mut HrPwmCtrl)

Stop HRTIM.

Source

pub fn set_dead_time(&mut self, dead_time: u16)

Set the dead time as a proportion of the maximum compare value

Source

pub fn get_max_compare_value(&mut self) -> u16

Get the maximum compare value of a duty cycle

Source

pub fn set_primary_duty(&mut self, primary_duty: u16)

The primary duty is the period in which the primary switch is active

In the case of a buck converter, this is the high-side switch In the case of a boost converter, this is the low-side switch

Source

pub fn set_secondary_duty(&mut self, secondary_duty: u16)

The secondary duty is the period in any switch is active

If less than or equal to the primary duty, the secondary switch will be active for one tick If a fully complementary output is desired, the secondary duty can be set to the max compare

Auto Trait Implementations§

§

impl<TIM, PSCL> Freeze for BridgeConverter<TIM, PSCL>

§

impl<TIM, PSCL> RefUnwindSafe for BridgeConverter<TIM, PSCL>
where TIM: RefUnwindSafe, PSCL: RefUnwindSafe,

§

impl<TIM, PSCL> Send for BridgeConverter<TIM, PSCL>
where TIM: Send, PSCL: Send,

§

impl<TIM, PSCL> Sync for BridgeConverter<TIM, PSCL>
where TIM: Sync, PSCL: Sync,

§

impl<TIM, PSCL> Unpin for BridgeConverter<TIM, PSCL>
where TIM: Unpin, PSCL: Unpin,

§

impl<TIM, PSCL> UnwindSafe for BridgeConverter<TIM, PSCL>
where TIM: UnwindSafe, PSCL: UnwindSafe,

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.