Merge pull request #711 from GullCode/recon-app

Recon app
This commit is contained in:
GullCode
2022-10-08 13:46:50 +02:00
committed by GitHub
17 changed files with 3555 additions and 163 deletions

View File

@@ -80,6 +80,21 @@ void RSSI::paint(Painter& painter) {
}
}
int32_t RSSI::get_min()
{
return min_ ;
}
int32_t RSSI::get_avg()
{
return avg_ ;
}
int32_t RSSI::get_max()
{
return max_ ;
}
void RSSI::set_pitch_rssi(bool enabled) {
pitch_rssi_enabled = enabled;
if (!enabled) baseband::set_pitch_rssi(0, false);

View File

@@ -46,6 +46,9 @@ public:
}
void paint(Painter& painter) override;
int32_t get_min();
int32_t get_avg();
int32_t get_max();
private:
int32_t min_;