Status is now updated on demand. A status request returns a ready status message for the chopper as well as updating the chopper parameters. We don't compensate for MW CMW on choppers 2 and 3. PHASETOL=0.2 You can read the frequency from chopper one. r2193 | ffr | 2007-10-23 12:58:13 +1000 (Tue, 23 Oct 2007) | 8 lines
22 lines
565 B
Makefile
22 lines
565 B
Makefile
#---------------------------------------------------------------------------
|
|
# Makefile for the site hardware support library
|
|
# Paul Hathaway, Nov 2004
|
|
#--------------------------------------------------------------------------
|
|
|
|
.SUFFIXES:
|
|
.SUFFIXES: .c .o
|
|
|
|
SRC = .
|
|
CC = gcc
|
|
CFLAGS = -g -DLINUX $(DFORTIFY) -I$(SRC) -I../.. -Wall
|
|
|
|
HOBJ= serialsinq.o nhq200util.o itc4util.o lh45util.o lakeshore340util.o asynsrv_utility.o geterrno.o strjoin.o chopper.o
|
|
|
|
libhlib.a: $(HOBJ)
|
|
rm -f libhlib.a
|
|
ar cr libhlib.a $(HOBJ)
|
|
ranlib libhlib.a
|
|
|
|
clean:
|
|
rm -f *.o *.a
|