[][src]Struct cmsis_dsp_sys_pregenerated::arm_rfft_instance_f32

#[repr(C)]pub struct arm_rfft_instance_f32 {
    pub fftLenReal: u32,
    pub fftLenBy2: u16,
    pub ifftFlagR: u8,
    pub bitReverseFlagR: u8,
    pub twidCoefRModifier: u32,
    pub pTwiddleAReal: *const float32_t,
    pub pTwiddleBReal: *const float32_t,
    pub pCfft: *mut arm_cfft_radix4_instance_f32,
}

@brief Instance structure for the floating-point RFFT/RIFFT function.

Fields

fftLenReal: u32

< length of the real FFT.

fftLenBy2: u16

< length of the complex FFT.

ifftFlagR: u8

< flag that selects forward (ifftFlagR=0) or inverse (ifftFlagR=1) transform.

bitReverseFlagR: u8

< flag that enables (bitReverseFlagR=1) or disables (bitReverseFlagR=0) bit reversal of output.

twidCoefRModifier: u32

< twiddle coefficient modifier that supports different size FFTs with the same twiddle factor table.

pTwiddleAReal: *const float32_t

< points to the real twiddle factor table.

pTwiddleBReal: *const float32_t

< points to the imag twiddle factor table.

pCfft: *mut arm_cfft_radix4_instance_f32

< points to the complex FFT instance.

Auto Trait Implementations

Blanket Implementations

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

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

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

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

impl<T, U> Into<U> for T where
    U: From<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.