mirror of
https://github.com/eried/portapack-mayhem.git
synced 2025-07-23 15:01:14 -04:00
Added support for multiple sample rates in IQ record
Support for any sample rate <= 500k in IQ replay Fixed bias-t power not activating in TX Removed RSSI pitch output option (awful code) Udated binary
This commit is contained in:
parent
57c759627d
commit
7fd987a2b4
23 changed files with 193 additions and 84 deletions
|
@ -77,12 +77,20 @@ WM8731 audio_codec_wm8731 { i2c0, 0x1a };
|
|||
AK4951 audio_codec_ak4951 { i2c0, 0x12 };
|
||||
|
||||
ReceiverModel receiver_model;
|
||||
TransmitterModel transmitter_model;
|
||||
|
||||
TemperatureLogger temperature_logger;
|
||||
|
||||
TransmitterModel transmitter_model;
|
||||
bool antenna_bias { false };
|
||||
uint8_t bl_tick_counter { 0 };
|
||||
|
||||
uint8_t bl_tick_counter = 0;
|
||||
void set_antenna_bias(const bool v) {
|
||||
antenna_bias = v;
|
||||
}
|
||||
|
||||
bool get_antenna_bias() {
|
||||
return antenna_bias;
|
||||
}
|
||||
|
||||
class Power {
|
||||
public:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue