git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@17 7ae35d74-ebe9-4afe-98af-79ac388436b8
Hamlib-1.0.0
Frank Singleton, VK3FCS 2000-07-25 01:23:20 +00:00
rodzic a2198dae87
commit 8be2d92617
4 zmienionych plików z 286 dodań i 0 usunięć

Wyświetl plik

@ -0,0 +1,91 @@
# hamlib - (C) Frank Singleton 2000 (vk3fcs@ix.netcom.com)
#
# testlibft847 - (C) Frank Singleton 2000 (vk3fcs@ix.netcom.com)
# This program uses libft847.so to test an API for communicating
# via serial interface to an FT-847 using the "CAT" interface.
#
#
# Make file for libft847.so shared lib test suite.
#
#
# $Id: Makefile,v 1.1 2000-07-25 01:23:20 javabear Exp $
#
#
#
#
#TEST_LIBDIR = ../lib
#TEST_INCLUDEDIR = ../include
LIB_NAME = libft847.so
LIB_HEADER = ft847.h
# access to common stuff
COMMON_DIR = ../../common/
#LIB_SONAME = libft847.so.1
#LIB_RELEASE = libft847.so.1.0.1
CC = gcc
INCLUDE = -I/usr/include -I/usr/local/include -I. -I../include
OBJ = testlibft847.o $(COMMON_DIR)serial.o
LDFLAG = -lm -lft847 -L../lib
CFLAGS = -g -Wall -ansi -pedantic -O2 -D__USE_FIXED_PROTOTYPES__
MAKEALL = testlibft847
all: $(MAKEALL)
testlibft847: $(OBJ)
$(CC) $(CFLAGS) $(INCLUDE) $(LDFLAG) -o testlibft847 $(OBJ)
testlibft847.o: testlibft847.c testlibft847.h
$(CC) $(CFLAGS) $(INCLUDE) -c testlibft847.c
# what common stuff I need.
serial.o:
(cd $(COMMON_DIR) && $(MAKE))
# clean up
clean:
make cleanlocal
# clean up local directory
.PHONY: cleanlocal
cleanlocal:
rm -f *.o testlibft847
# run test program in local directory
.PHONY: runtest
runtest:
(LD_LIBRARY_PATH="../lib" ./testlibft847 )

Wyświetl plik

Wyświetl plik

@ -0,0 +1,181 @@
/* hamlib - (C) Frank Singleton 2000 (vk3fcs@ix.netcom.com)
*
* testlibft847.c - (C) Frank Singleton 2000 (vk3fcs@ix.netcom.com)
* This program tests the libft847.so API for communicating
* via serial interface to an FT-847 using the "CAT" interface.
*
*
* $Id: testlibft847.c,v 1.1 2000-07-25 01:23:20 javabear Exp $
*
*/
#include <stdlib.h>
#include <stdio.h> /* Standard input/output definitions */
#include <string.h> /* String function definitions */
#include <unistd.h> /* UNIX standard function definitions */
#include <fcntl.h> /* File control definitions */
#include <errno.h> /* Error number definitions */
#include <termios.h> /* POSIX terminal control definitions */
#include <sys/ioctl.h>
#include "testlibft847.h"
#include "ft847.h"
static unsigned char datain[5]; /* data read from rig */
/*
* Decode routine for rx status update map
*/
static void decode_rx_status_flags(unsigned char rxflag) {
if((rxflag & RXSF_PTT_STATUS) != 0 ) {
printf("PTT = ON (TX) \n");
} else {
printf("PTT = OFF (RX) \n");
}
printf("PO/ALC Meter Data = %i \n", rxflag & RXSF_POALC_METER_MASK);
}
/*
* Decode routine for tx status update map
*/
static void decode_tx_status_flags(unsigned char txflag) {
if((txflag & TXSF_DISC_CENTER) != 0 ) {
printf("Discriminator = Off Center \n");
} else {
printf("Discriminator = Centered \n");
}
if((txflag & TXSF_SQUELCH_STATUS) != 0 ) {
printf("Squelch = Squelch On (no signal) \n");
} else {
printf("Squelch = Squelch Off (signal present) \n");
}
if((txflag & TXSF_CTCSS_DCS_CODE) != 0 ) {
printf("CTCSS/DCS Code = Un-Matched \n");
} else {
printf("CTCSS/DCS Code = Matched \n");
}
printf("S-Meter Meter Data = %i \n", txflag & TXSF_SMETER_MASK);
}
/*
* Decode routine for Mode Status
*/
static void decode_mode(unsigned char mode) {
switch(mode) {
case 0:
printf("Current Mode = LSB \n");
break;
case 1:
printf("Current Mode = USB \n");
break;
case 2:
printf("Current Mode = CW \n");
break;
case 3:
printf("Current Mode = CWR \n");
break;
case 4:
printf("Current Mode = AM \n");
break;
case 8:
printf("Current Mode = FM \n");
break;
case 82:
printf("Current Mode = CW(N) \n");
break;
case 83:
printf("Current Mode = CW(N)-R \n");
break;
case 84:
printf("Current Mode = AM(N) \n");
break;
case 88:
printf("Current Mode = FM(N) \n");
break;
default:
printf("Current mode = XXXXX \n");
break;
}
}
/*
* Do a hex dump of the unsigned char array.
*/
static void dump_hex(unsigned char *ptr, int size, int length) {
int i;
printf("Memory Dump \n\n");
for(i=0; i<size; i++) {
printf(" 0x%2.2x", *(ptr+i));
if (i % length == 15) {
printf("\n");
}
}
printf("\n\n");
}
/*
* Simple test to see if we are talking to the RIG.
*/
static int test(fd) {
cmd_cat_on(fd);
sleep(1);
cmd_cat_off(fd);
dump_hex(datain, 5, 5); /* do a hex dump */
return 0;
}
/*
* Main program starts here..
*/
int main(void) {
int fd;
fd = open_port(SERIAL_PORT);
printf("port %s opened ok \n",SERIAL_PORT);
test(fd);
printf("testing communication result ok \n");
close(fd);
printf("port %s closed ok \n",SERIAL_PORT);
return 0;
}

Wyświetl plik

@ -0,0 +1,14 @@
/*
* hamlib - (C) Frank Singleton 2000 (vk3fcs@ix.netcom.com)
*
* testlibft847.h - (C) Frank Singleton 2000 (vk3fcs@ix.netcom.com)
* This program tests the libft847.so API for communicating
* via serial interface to an FT-847 using the "CAT" interface.
*
*
* $Id: testlibft847.h,v 1.1 2000-07-25 01:23:20 javabear Exp $
*/
#define SERIAL_PORT "/dev/ttyS1"