From 97668d75d8a4db5d7b8339b46615b2984b9c8335 Mon Sep 17 00:00:00 2001 From: alanbjohnston Date: Tue, 1 Oct 2019 20:21:35 -0400 Subject: [PATCH] added printf of sock send attempt --- afsk/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/afsk/main.c b/afsk/main.c index 7bc2bae7..07b5ead1 100644 --- a/afsk/main.c +++ b/afsk/main.c @@ -911,7 +911,7 @@ int get_tlm_fox() { if (!error) { digitalWrite (0, LOW); - printf("Sending buffer over socket!\n"); + printf("Sending %d buffer bytes over socket!\n", buffSize); int sock_ret = send(sock, buffer[alt], buffSize, 0); printf("Result of socket send: %d \n", sock_ret); if (sock_ret == -1) {