summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKevin P. Fleming <kpfleming@digium.com>2006-08-09 14:29:53 +0000
committerTzafrir Cohen <tzafrir.cohen@xorcom.com>2011-02-27 21:09:14 +0200
commit27560e8d5efedd27630e6415f3b87b745e5d59c0 (patch)
tree23afec6c87b7952b32c20ca9ec7e0afb1106c554
parent87350ddeca199ccf385dd52416d715b649659724 (diff)
import helper script
git-svn-id: http://svn.asterisk.org/svn/octasic_api/oct612x/trunk@4 537310ab-6354-42db-a3cc-247b777f7be6
-rwxr-xr-xsoftware/octasic-helper39
1 files changed, 39 insertions, 0 deletions
diff --git a/software/octasic-helper b/software/octasic-helper
new file mode 100755
index 0000000..ab100d1
--- /dev/null
+++ b/software/octasic-helper
@@ -0,0 +1,39 @@
+#!/bin/sh
+
+#
+# Jeffrey C. Ollie <jeff@ocjtech.us>
+#
+# $1 == information requested
+# $2 == path to octasic directory
+#
+
+APIDIR=$2/octdeviceapi/oct6100api/oct6100_api
+
+case $1 in
+ objects)
+ echo $APIDIR/oct6100_adpcm_chan.o \
+ $APIDIR/oct6100_channel.o \
+ $APIDIR/oct6100_chip_open.o \
+ $APIDIR/oct6100_chip_stats.o \
+ $APIDIR/oct6100_conf_bridge.o \
+ $APIDIR/oct6100_debug.o \
+ $APIDIR/oct6100_events.o \
+ $APIDIR/oct6100_interrupts.o \
+ $APIDIR/oct6100_memory.o \
+ $APIDIR/oct6100_miscellaneous.o \
+ $APIDIR/oct6100_mixer.o \
+ $APIDIR/oct6100_phasing_tsst.o \
+ $APIDIR/oct6100_playout_buf.o \
+ $APIDIR/oct6100_remote_debug.o \
+ $APIDIR/oct6100_tlv.o \
+ $APIDIR/oct6100_tone_detection.o \
+ $APIDIR/oct6100_tsi_cnct.o \
+ $APIDIR/oct6100_tsst.o \
+ $2/apilib/bt/octapi_bt0.o \
+ $2/apilib/largmath/octapi_largmath.o \
+ $2/apilib/llman/octapi_llman.o
+ ;;
+ cflags)
+ echo -I$2/include -I$2/octdeviceapi -I$2/octdeviceapi/oct6100api
+ ;;
+esac