diff options
author | Keith Packard <keithp@keithp.com> | 2014-06-22 21:13:54 -0700 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2014-06-22 23:52:53 -0700 |
commit | 0a19073649570016db28d5e2a4a225273732adb5 (patch) | |
tree | 00da3ac59423c0c9c25c11fbe9fc5e10feadc66f | |
parent | fc3364de2b6cdfff53f5c38b3ae52ae5601ff3b7 (diff) |
ao-bringup: Use the C tools to test EasyMini
I think my USB driver in the kernel is broken; the nickle versions of
these tools did very strange things and never worked.
Signed-off-by: Keith Packard <keithp@keithp.com>
-rwxr-xr-x | ao-bringup/test-easymini | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ao-bringup/test-easymini b/ao-bringup/test-easymini index 29139385..17e00955 100755 --- a/ao-bringup/test-easymini +++ b/ao-bringup/test-easymini @@ -19,7 +19,7 @@ ao-list | while read product serial dev; do echo "Testing $product $serial $dev" echo "Testing igniters. Both should flash" - ./test-igniter "$dev" drogue main + ../ao-tools/ao-test-igniter/ao-test-igniter --tty="$dev" drogue main case $? in 0) @@ -30,7 +30,7 @@ ao-list | while read product serial dev; do esac echo "Testing baro sensor" - ./test-baro "$dev" + ../ao-tools/ao-test-baro/ao-test-baro --tty="$dev" case $? in 0) @@ -43,7 +43,7 @@ ao-list | while read product serial dev; do FLASHSIZE=1048576 echo "Testing flash" - ./test-flash "$dev" "$FLASHSIZE" + ../ao-tools/ao-test-flash/ao-test-flash --tty="$dev" "$FLASHSIZE" case $? in 0) |