From 3d06644c7d25d9613c0a2f9e3258680b5e869c19 Mon Sep 17 00:00:00 2001 From: "Frank Singleton, VK3FCS" Date: Sun, 30 Jul 2000 04:02:56 +0000 Subject: [PATCH] removed unwanted debug printf's git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@59 7ae35d74-ebe9-4afe-98af-79ac388436b8 --- ft747/ft747.c | 17 +++-------------- 1 file changed, 3 insertions(+), 14 deletions(-) diff --git a/ft747/ft747.c b/ft747/ft747.c index 6d05ae13b..694fb09f9 100644 --- a/ft747/ft747.c +++ b/ft747/ft747.c @@ -7,7 +7,7 @@ * box (FIF-232C) or similar * * - * $Id: ft747.c,v 1.5 2000-07-28 03:06:16 javabear Exp $ + * $Id: ft747.c,v 1.6 2000-07-30 04:02:56 javabear Exp $ * */ @@ -124,7 +124,6 @@ void cmd_set_clarify_off(int fd) { void cmd_set_clarify_on(int fd) { static unsigned char data[] = { 0x00, 0x00, 0x00, 0x01, 0x09 }; /* clarify on */ write_block(fd,data); - printf("cmd_clarify_on complete \n"); } void cmd_set_freq(int fd, unsigned int freq) { @@ -137,7 +136,6 @@ void cmd_set_mode(int fd, int mode) { data[3] = mode; write_block(fd,data); - printf("cmd_mode_set complete \n"); } @@ -146,14 +144,12 @@ void cmd_set_pacing(int fd, int delay) { data[3] = delay; write_block(fd,data); - printf("cmd_pacing_set complete \n"); } void cmd_set_ptt_off(int fd) { static unsigned char data[] = { 0x00, 0x00, 0x00, 0x00, 0x0f }; /* ptt off */ write_block(fd,data); - printf("cmd_ptt_off complete \n"); } @@ -169,7 +165,6 @@ void cmd_set_ptt_on(int fd) { } - /* * Read data from rig and store in buffer provided * by the user. @@ -179,15 +174,9 @@ void cmd_get_update_store(int fd, unsigned char *buffer) { int i,n; /* counters */ static unsigned char data[] = { 0x00, 0x00, 0x00, 0x00, 0x10 }; /* request update from rig */ - write_block(fd,data); - - n = read_sleep(fd,buffer,345); /* wait and read for 345 bytes to be read */ - for(i=0; i