pull/105/head
alanbjohnston 5 years ago committed by GitHub
parent 11f9bffffe
commit 88c25bf4ab
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -2201,8 +2201,9 @@ void get_tlm_fox() {
sock_ret = send(sock, &buffer[sock_ret], (unsigned int)(ctr * 2 + 2 - sock_ret), 0);
printf("socket send 2 %d ms bytes: %d \n\n", millis() - start, sock_ret);
}
start = millis();
int sock_ret = send(sock, buffer, (unsigned int)(ctr * 2 + 2), 0);
if (mode == BPSK) {
start = millis();
sock_ret = send(sock, buffer, (unsigned int)(ctr * 2 + 2), 0);
printf("socket send 1a %d ms bytes: %d \n\n", (unsigned int)millis() - start, sock_ret);
fflush(stdout);
@ -2212,6 +2213,7 @@ void get_tlm_fox() {
sock_ret = send(sock, &buffer[sock_ret], (unsigned int)(ctr * 2 + 2 - sock_ret), 0);
printf("socket send 2a %d ms bytes: %d \n\n", millis() - start, sock_ret);
}
}
// if ((mode == BPSK) && (firstTime == 1)) // only do first time
if (firstTime == 1) // only do first time
{

Loading…
Cancel
Save

Powered by TurnKey Linux.