add configurable rx gain setting

This commit is contained in:
2026-02-26 19:52:05 +01:00
parent 82010fc745
commit da308fe23e

View File

@@ -88,6 +88,16 @@ pub enum PaSelection {
HighPower,
}
/// RX gain setting (register 0x08AC)
#[derive(Clone, Copy, defmt::Format)]
#[repr(u8)]
pub enum RxGain {
/// Power saving gain
PowerSaving = 0x94,
/// Boosted gain (better sensitivity)
Boosted = 0x96,
}
/// Standby mode clock source
#[derive(Clone, Copy, defmt::Format)]
#[repr(u8)]