From 8453d2431c7aa6e31cc68f9dd34e09ead384cfe7 Mon Sep 17 00:00:00 2001 From: Tim Jagenberg Date: Thu, 14 May 2015 23:22:55 +0200 Subject: [PATCH] added soft reboot to teensy_loader_cli --- platformio/builder/scripts/teensy.py | 1 + 1 file changed, 1 insertion(+) diff --git a/platformio/builder/scripts/teensy.py b/platformio/builder/scripts/teensy.py index ba657713..fc4f4f91 100644 --- a/platformio/builder/scripts/teensy.py +++ b/platformio/builder/scripts/teensy.py @@ -40,6 +40,7 @@ if isfile(env.subst(join( UPLOADERFLAGS=[ "-mmcu=$BOARD_MCU", "-w", # wait for device to apear + "-s", # soft reboot if device not online "-v" # verbose output ], UPLOADHEXCMD='"$UPLOADER" $UPLOADERFLAGS $SOURCES'