In the COMMAND_TUNE_TO handler in the ESP32 code, the tx frequency, rx frequency, tone, and squelch are extracted from the command message sent by the Android app (e.g. "146.700146.700000")
However, the indices used to extract the tx and rx frequencies are mistakenly going 1 character too far. For example, what should be "146.700" is instead read as "146.7001".
In practice this doesn't cause any major issues. Either the radio is ignoring the extra digit, or it's tuning ~100Hz off. But should definitely be fixed.
In the COMMAND_TUNE_TO handler in the ESP32 code, the tx frequency, rx frequency, tone, and squelch are extracted from the command message sent by the Android app (e.g. "146.700146.700000")
However, the indices used to extract the tx and rx frequencies are mistakenly going 1 character too far. For example, what should be "146.700" is instead read as "146.7001".
In practice this doesn't cause any major issues. Either the radio is ignoring the extra digit, or it's tuning ~100Hz off. But should definitely be fixed.