From 5a7458b7d922113fb0634b73866e7ac53ca56302 Mon Sep 17 00:00:00 2001 From: "Frank Singleton, VK3FCS" Date: Wed, 26 Jul 2000 00:00:40 +0000 Subject: [PATCH] fixed cmd_sat_on / off git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@21 7ae35d74-ebe9-4afe-98af-79ac388436b8 --- ft847/ft847.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ft847/ft847.c b/ft847/ft847.c index 373b4fc12..dc1c1f539 100644 --- a/ft847/ft847.c +++ b/ft847/ft847.c @@ -6,7 +6,7 @@ * via serial interface to an FT-847 using the "CAT" interface. * * - * $Id: ft847.c,v 1.1 2000-07-25 01:17:00 javabear Exp $ + * $Id: ft847.c,v 1.2 2000-07-26 00:00:40 javabear Exp $ * */ @@ -81,12 +81,12 @@ void cmd_ptt_off(int fd) { } void cmd_sat_on(int fd) { - static unsigned char data[] = { 0x00, 0x00, 0x00, 0x00, 0x08 }; /* sat = on */ + static unsigned char data[] = { 0x00, 0x00, 0x00, 0x00, 0x4e }; /* sat = on */ write_block(fd,data); } void cmd_sat_off(int fd) { - static unsigned char data[] = { 0x00, 0x00, 0x00, 0x00, 0x88 }; /* sat = off */ + static unsigned char data[] = { 0x00, 0x00, 0x00, 0x00, 0x8e }; /* sat = off */ write_block(fd,data); }