-
Notifications
You must be signed in to change notification settings - Fork 0
/
INSTALL.arc
31 lines (21 loc) · 1.1 KB
/
INSTALL.arc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
Instructions to install Astronomical Research Cameras driver
============================================================
For ARC drivers, you will need to have:
- astropci driver running in your kernel. Source package is available at
http://www.astro-cam.com/arcpage.php?txt=software.php, you will need to get
driver acccess password from ARC. Look for AstroPCI - PCI board device driver
- ARC PCI API, version 2.0 (C++). You can download it from ARC pages mentioned
above, look for AstroPCI Device Driver Application Interface (API) version
2.0. Unpack it to a directory, let's say /usr/src/arcapi
During ./configure step, you will need to provide path for ARC library using
--with-arc parameter. The passed directory should point to path under which Release and CController directories are located.
user@host:$ cd ~/rts2
user@host:~/rts2$ ./configure --with-arc=/usr/src/arcapi/ARC_API/
This is Makefile for CController, if you are compiling CController on Windows.
all:CController.a
CXXFLAGS=-DWIN32
CController.a:CController.o CTools.o TempCtrl.o CLog.o
ar -r $@ $?
clean:
rm -rf *.o
rm -rf CController.a