summaryrefslogtreecommitdiff
path: root/platforms
diff options
context:
space:
mode:
authorQMK Bot <hello@qmk.fm>2025-11-27 13:37:29 +0000
committerQMK Bot <hello@qmk.fm>2025-11-27 13:37:29 +0000
commit9acd127cc1318d761aac76a806189fadeaaa247a (patch)
treeaf6649c0034b51d0595855cbb692256ae17d97dd /platforms
parent9ab8e4cd5a9d21f45c9f68c718c7c31765e0a321 (diff)
parent9c2ca00074784dbee27b459d71cfc8e75f47b976 (diff)
Merge remote-tracking branch 'origin/master' into develop
Diffstat (limited to 'platforms')
-rw-r--r--platforms/avr/flash.mk6
-rw-r--r--platforms/chibios/flash.mk6
2 files changed, 6 insertions, 6 deletions
diff --git a/platforms/avr/flash.mk b/platforms/avr/flash.mk
index 51731f0aa8..bfb292224c 100644
--- a/platforms/avr/flash.mk
+++ b/platforms/avr/flash.mk
@@ -5,10 +5,10 @@
5 5
6# Autodetect teensy loader 6# Autodetect teensy loader
7ifndef TEENSY_LOADER_CLI 7ifndef TEENSY_LOADER_CLI
8 ifneq (, $(shell which teensy-loader-cli 2>/dev/null)) 8 ifneq (, $(shell which teensy_loader_cli 2>/dev/null))
9 TEENSY_LOADER_CLI ?= teensy-loader-cli
10 else
11 TEENSY_LOADER_CLI ?= teensy_loader_cli 9 TEENSY_LOADER_CLI ?= teensy_loader_cli
10 else
11 TEENSY_LOADER_CLI ?= teensy-loader-cli
12 endif 12 endif
13endif 13endif
14 14
diff --git a/platforms/chibios/flash.mk b/platforms/chibios/flash.mk
index f4db17a58b..0734754834 100644
--- a/platforms/chibios/flash.mk
+++ b/platforms/chibios/flash.mk
@@ -77,10 +77,10 @@ st-flash: $(BUILD_DIR)/$(TARGET).hex sizeafter
77 77
78# Autodetect teensy loader 78# Autodetect teensy loader
79ifndef TEENSY_LOADER_CLI 79ifndef TEENSY_LOADER_CLI
80 ifneq (, $(shell which teensy-loader-cli 2>/dev/null)) 80 ifneq (, $(shell which teensy_loader_cli 2>/dev/null))
81 TEENSY_LOADER_CLI ?= teensy-loader-cli
82 else
83 TEENSY_LOADER_CLI ?= teensy_loader_cli 81 TEENSY_LOADER_CLI ?= teensy_loader_cli
82 else
83 TEENSY_LOADER_CLI ?= teensy-loader-cli
84 endif 84 endif
85endif 85endif
86 86