diff options
author | Bdale Garbee <bdale@gag.com> | 2017-09-19 11:56:52 -0600 |
---|---|---|
committer | Bdale Garbee <bdale@gag.com> | 2017-09-19 11:56:52 -0600 |
commit | df39a30c762d57c7d04110e054f74d50fa8d85de (patch) | |
tree | bcb94d2b1e1e233242765ca2c948e3f53d8edd61 | |
parent | 8124109e0b455c9d8d583f4d985b93d23d7b1350 (diff) |
don't exit on dfu-util errors, it's not reliable about reporting success
-rwxr-xr-x | ao-bringup/turnon_telebt | 2 | ||||
-rwxr-xr-x | ao-bringup/turnon_telegps | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/ao-bringup/turnon_telebt b/ao-bringup/turnon_telebt index fb8318b3..8bf9bcb5 100755 --- a/ao-bringup/turnon_telebt +++ b/ao-bringup/turnon_telebt @@ -44,7 +44,7 @@ esac FLASH_FILE=$REPO/loaders/telebt-v$VERSION-altos-flash-*.bin ALTOS_FILE=$REPO/telebt-v$VERSION-*.elf -$DFU_UTIL -a 0 -s 0x08000000:leave -D $FLASH_FILE || exit 1 +$DFU_UTIL -a 0 -s 0x08000000:leave -D $FLASH_FILE sleep 2 diff --git a/ao-bringup/turnon_telegps b/ao-bringup/turnon_telegps index fd879abd..48af692a 100755 --- a/ao-bringup/turnon_telegps +++ b/ao-bringup/turnon_telegps @@ -49,7 +49,7 @@ esac FLASH_FILE=$REPO/loaders/telegps-v2.0-altos-flash-*.bin ALTOS_FILE=$REPO/telegps-v2.0-*.elf -$DFU_UTIL -a 0 -s 0x08000000:leave -D $FLASH_FILE || exit 1 +$DFU_UTIL -a 0 -s 0x08000000:leave -D $FLASH_FILE sleep 2 |