ft817: adding delay before next retry after returning from tx to rx

This commit is contained in:
Eriks Dobelis 2018-10-28 20:50:39 +02:00
parent 1ecadcc594
commit 1e849a6ba7

View File

@ -885,6 +885,10 @@ int ft817_set_ptt(RIG *rig, vfo_t vfo, ptt_t ptt)
ptt_response = -1;
}
if (ptt_response != ptt) {
usleep(100000l); // Before next try wait for 0.1 seconds. Helps with slower rigs cloning FT817 protocol (e.g. MCHF)
}
} while (ptt_response != ptt && retries-- > 0);
if (retries >=0) {