diff --git a/WsprTxScheduler.cpp b/WsprTxScheduler.cpp index 6941ad4b8..7319760f5 100644 --- a/WsprTxScheduler.cpp +++ b/WsprTxScheduler.cpp @@ -68,6 +68,11 @@ int tx_add_one(char* tx) } } } + // last resort - see if we can set the last slot to 1 + if( tx[58]==0 && tx[59]==0 ) { + tx[59]=1; + return 1; + } return 0; }