fixed cmd_sat_on / off

git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@21 7ae35d74-ebe9-4afe-98af-79ac388436b8
Hamlib-1.0.0
Frank Singleton, VK3FCS 2000-07-26 00:00:40 +00:00
rodzic 8ef40f2621
commit 5a7458b7d9
1 zmienionych plików z 3 dodań i 3 usunięć

Wyświetl plik

@ -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);
}