Skip to content

Commit 014b0f1

Browse files
committed
Change the output extension/format for Teensy 3.1 to HEX
1 parent 78cc959 commit 014b0f1

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

workspace_tools/targets.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -415,6 +415,8 @@ def __init__(self):
415415
self.detect_code = ["0230"]
416416

417417
class TEENSY3_1(Target):
418+
OUTPUT_EXT = '.hex'
419+
418420
def __init__(self):
419421
Target.__init__(self)
420422
self.core = "Cortex-M4"
@@ -423,7 +425,6 @@ def __init__(self):
423425
self.is_disk_virtual = True
424426
self.detect_code = ["0230"]
425427

426-
OUTPUT_EXT = '.hex'
427428

428429
def init_hooks(self, hook, toolchain_name):
429430
if toolchain_name in ['ARM_STD', 'ARM_MICRO', 'GCC_ARM']:

0 commit comments

Comments
 (0)