ipc: add missing override

Change-Id: Ib1493ac10b40d24372075d4cebd67015192675e0
This commit is contained in:
Eric Wild 2022-12-06 10:24:16 +01:00 committed by Hoernchen
parent 5561f1129d
commit d3e3bba2cd
1 changed files with 1 additions and 1 deletions

View File

@ -199,7 +199,7 @@ class IPCDevice : public RadioDevice {
virtual double minRxGain(void) override;
/* FIXME: return rx_gains[chan] ? receive factor from IPC Driver? */
double rssiOffset(size_t chan) { return 0.0f; };
double rssiOffset(size_t chan) override { return 0.0f; };
double setPowerAttenuation(int atten, size_t chan) override;
double getPowerAttenuation(size_t chan = 0) override;