Struct ramp_maker::flat::Flat[][src]

pub struct Flat<Num = DefaultNum> { /* fields omitted */ }

Flat motion profile

This is the simplest possible motion profile, as it produces just a constant velocity. Please note that this is of limited use, and should probably be restricted to testing.

Theoretically, this profile produces infinite acceleration/deceleration at the beginning and end of the movement. In practice, you might get away with this, if the velocity and the load on the motor are low enough. Otherwise, this will definitely produce missed steps.

Create an instance of this struct using Flat::new, then use the API defined by MotionProfile (which this struct implements) to generate the acceleration ramp.

Unit of Time

This code is agnostic on which unit of time is used. If you provide the target velocity in steps per second, the unit of the delay returned will be seconds.

This allows you to pass the target velocity in steps per number of timer counts for the timer you’re using, completely eliminating any conversion overhead for the delay.

Type Parameter

The type parameter Num defines the type that is used to represent the target velocity and the delay per step. It is set to a 32-bit fixed-point number type by default.

This default is appropriate for 32-bit microcontrollers, but it might not be ideal for 8- or 16-bit microcontrollers, or target platforms where hardware support for floating point numbers is available. You can override it with other types from the fixed crate, or f32/f64, for example.

Implementations

impl<Num> Flat<Num>[src]

pub fn new() -> Self[src]

Create a new instance of Flat

Trait Implementations

impl Default for Flat<f32>[src]

impl<Num> MotionProfile for Flat<Num> where
    Num: Copy + Zero + Inv<Output = Num>, 
[src]

type Velocity = Num

The type used for representing velocities

type Delay = Num

The type used for representing delay values

Auto Trait Implementations

impl<Num> Send for Flat<Num> where
    Num: Send

impl<Num> Sync for Flat<Num> where
    Num: Sync

impl<Num> Unpin for Flat<Num> where
    Num: Unpin

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Az for T[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> CheckedAs for T[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<Src, Dst> LosslessTryInto<Dst> for Src where
    Dst: LosslessTryFrom<Src>, 
[src]

impl<Src, Dst> LossyInto<Dst> for Src where
    Dst: LossyFrom<Src>, 
[src]

impl<T> OverflowingAs for T[src]

impl<T> Same<T> for T[src]

type Output = T

Should always be Self

impl<T> SaturatingAs for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<T> UnwrappedAs for T[src]

impl<T> WrappingAs for T[src]