altos: Clean up .gitignore and add a few random files
authorKeith Packard <keithp@keithp.com>
Tue, 12 Nov 2013 05:54:57 +0000 (14:54 +0900)
committerKeith Packard <keithp@keithp.com>
Tue, 12 Nov 2013 05:54:57 +0000 (14:54 +0900)
Signed-off-by: Keith Packard <keithp@keithp.com>
12 files changed:
src/.gitignore
src/lpcxpresso/.gitignore [new file with mode: 0644]
src/telefire-v0.2/.gitignore [new file with mode: 0644]
src/telefire-v0.2/.sdcdbrc [new file with mode: 0644]
src/telegps-v0.3/.gitignore [new file with mode: 0644]
src/telemini-v2.0/.gitignore [new file with mode: 0644]
src/telemini-v2.0/.sdcdbrc [new file with mode: 0644]
src/telescience-pwm/.gitignore
src/test/.gitignore
src/test/mega.flights [new file with mode: 0644]
src/test/plot-rot [new file with mode: 0755]
src/test/run-all-mm [new file with mode: 0755]

index cae36ae6a12a6d5a6363ab2e4d5ce38e6513021c..a8628fae726e31eccd5582b53550fb976f524261 100644 (file)
@@ -1,3 +1,4 @@
+Makedefs
 altitude.h
 altitude-pa.h
 ao_whiten.h
 altitude.h
 altitude-pa.h
 ao_whiten.h
diff --git a/src/lpcxpresso/.gitignore b/src/lpcxpresso/.gitignore
new file mode 100644 (file)
index 0000000..892c3ac
--- /dev/null
@@ -0,0 +1,3 @@
+ao_product.h
+ao_serial_lpc.h
+*.elf
diff --git a/src/telefire-v0.2/.gitignore b/src/telefire-v0.2/.gitignore
new file mode 100644 (file)
index 0000000..4d4f420
--- /dev/null
@@ -0,0 +1,2 @@
+telefire-*
+ao_product.h
diff --git a/src/telefire-v0.2/.sdcdbrc b/src/telefire-v0.2/.sdcdbrc
new file mode 100644 (file)
index 0000000..b9f6129
--- /dev/null
@@ -0,0 +1,2 @@
+--directory=../cc1111:../product:../core:../drivers:.
+
diff --git a/src/telegps-v0.3/.gitignore b/src/telegps-v0.3/.gitignore
new file mode 100644 (file)
index 0000000..892c3ac
--- /dev/null
@@ -0,0 +1,3 @@
+ao_product.h
+ao_serial_lpc.h
+*.elf
diff --git a/src/telemini-v2.0/.gitignore b/src/telemini-v2.0/.gitignore
new file mode 100644 (file)
index 0000000..568925a
--- /dev/null
@@ -0,0 +1,2 @@
+ao_product.h
+telemini-v2.0*
diff --git a/src/telemini-v2.0/.sdcdbrc b/src/telemini-v2.0/.sdcdbrc
new file mode 100644 (file)
index 0000000..b9f6129
--- /dev/null
@@ -0,0 +1,2 @@
+--directory=../cc1111:../product:../core:../drivers:.
+
index dfccadf8d77f924453ee157cf888bbc981f3bf61..5d9c09703a74e3fd67616ba039d484f716015943 100644 (file)
@@ -1,2 +1,2 @@
-telescience-v0.1*
+telescience-pwm*
 ao_product.h
 ao_product.h
index 90af65170d28a8d8beb150f2ef0d1d614ef6a9a4..b8b2513e5b54f57c9df6d95c8692832dd56b0493 100644 (file)
@@ -5,6 +5,10 @@ ao_flight_test_baro
 ao_flight_test_accel
 ao_gps_test
 ao_gps_test_skytraq
 ao_flight_test_accel
 ao_gps_test
 ao_gps_test_skytraq
+ao_gps_test_ublox
+ao_int64_test
+ao_ms5607_convert_test
+ao_quaternion_test
 ao_convert_test
 ao_convert_pa_test
 ao_fat_test
 ao_convert_test
 ao_convert_pa_test
 ao_fat_test
diff --git a/src/test/mega.flights b/src/test/mega.flights
new file mode 100644 (file)
index 0000000..71c44e6
--- /dev/null
@@ -0,0 +1,12 @@
+2013-10-12-serial-0094-flight-0001.eeprom
+2013-09-02-serial-094-flight-002.eeprom
+2013-03-02-serial-069-flight-002.eeprom
+2013-03-02-serial-069-flight-001.eeprom
+2013-05-27-serial-084-flight-001.mega
+2013-05-26-serial-085-flight-002.mega
+2013-05-19-serial-084-flight-003.mega
+2013-04-21-serial-069-flight-002.mega
+2012-10-20-serial-068-flight-004.mega
+2012-07-03-serial-058-flight-007.mega
+2012-06-30-serial-058-flight-006.mega
+2012-06-30-serial-058-flight-005.mega
diff --git a/src/test/plot-rot b/src/test/plot-rot
new file mode 100755 (executable)
index 0000000..b6b77c9
--- /dev/null
@@ -0,0 +1,30 @@
+#!/bin/sh
+
+case $# in
+1)
+       file="$1"
+       title="$1"
+       ;;
+2)
+       file="$1"
+       title="$2"
+       ;;
+*)
+       echo "Usage: $0 <data-file> <title>"
+       exit 1
+esac
+
+gnuplot -persist << EOF
+set ylabel "altitude (m)"
+set y2label "angle (d)"
+set xlabel "time (s)"
+set xtics border out nomirror
+set ytics border out nomirror
+set y2tics border out nomirror
+set title "$title"
+plot "$file" using 1:5 with lines axes x1y1 title "height",\
+"$file" using 1:9 with lines axes x1y2 title "gyro rot", \
+"$file" using 1:7 with lines axes x1y2 title "gyro tilt", \
+"$file" using 1:13 with lines axes x1y2 title "mag rot", \
+"$file" using 1:11 with lines axes x1y2 title "mag tilt"
+EOF
diff --git a/src/test/run-all-mm b/src/test/run-all-mm
new file mode 100755 (executable)
index 0000000..d9c2043
--- /dev/null
@@ -0,0 +1,2 @@
+#!/bin/sh
+./run-mm `cat mega.flights`