// stronger than the "TUNE" signal, and in the case of very low drive slider
// values they can be *much* stronger.
//
+ // NOTE: When using predistortion (PURESIGNAL), the IQ scaling must be switched off.
+ // In this case, the output power can also be stronger than intended.
+ //
+
if (power > 0) {
int hl2power = 15+(int)lround(ceil(40.0 * log10((double) power / 255.0)));
if (hl2power < 0) hl2power=0;
gain=gain*(double)tx->drive_level*0.00392;
}
}
- if (protocol == ORIGINAL_PROTOCOL && radio->device == DEVICE_HERMES_LITE2) {
+ if (protocol == ORIGINAL_PROTOCOL && radio->device == DEVICE_HERMES_LITE2 && !transmitter->puresignal) {
//
// The HermesLite2 is built around the AD9866 modem chip. The TX level can
// be adjusted from 0.0 to -7.5 dB in 0.5 db steps, and these settings are
// However, if the drive level requires an attenuation *much* larger than
// 7.5 dB we have to damp significantly at this place, which may affect IMD.
//
+ // NOTE: When doing adaptive pre-distortion (PURESIGNAL), IQ scaling cannot
+ // be used.
+ //
int power;
double f,g;
if(tune && !tx->tune_use_drive) {