Enum stm32wlxx_hal::subghz::RampTime
source · #[repr(u8)]pub enum RampTime {
Micros10 = 0,
Micros20 = 1,
Micros40 = 2,
Micros80 = 3,
Micros200 = 4,
Micros800 = 5,
Micros1700 = 6,
Micros3400 = 7,
}
Expand description
Power amplifier ramp time for FSK, MSK, and LoRa modulation.
Argument of set_ramp_time
.
Variants§
Micros10 = 0
10µs
Micros20 = 1
20µs
Micros40 = 2
40µs
Micros80 = 3
80µs
Micros200 = 4
200µs
Micros800 = 5
800µs
Micros1700 = 6
1.7ms
Micros3400 = 7
3.4ms
Trait Implementations§
source§impl Ord for RampTime
impl Ord for RampTime
source§impl PartialEq for RampTime
impl PartialEq for RampTime
source§impl PartialOrd for RampTime
impl PartialOrd for RampTime
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moreimpl Eq for RampTime
impl StructuralEq for RampTime
impl StructuralPartialEq for RampTime
Auto Trait Implementations§
impl RefUnwindSafe for RampTime
impl Send for RampTime
impl Sync for RampTime
impl Unpin for RampTime
impl UnwindSafe for RampTime
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more