Skip to content

Commit 05ce9fd

Browse files
When detecting MONITOR_BAUDRATE, use $(LOCAL_INO_SRCS)
Now that this detection code is moved down a bit, it can use the same .ino list as all the other code.
1 parent 14fd6e7 commit 05ce9fd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

arduino-mk/Arduino.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -658,7 +658,7 @@ endif
658658
#
659659
ifndef MONITOR_BAUDRATE
660660
#This works only in linux. TODO: Port it to MAC OS also
661-
SPEED = $(shell grep --max-count=1 --regexp="Serial.begin" $$(ls -1 *.ino) | sed -e 's/\t//g' -e 's/\/\/.*$$//g' -e 's/(/\t/' -e 's/)/\t/' | awk -F '\t' '{print $$2}' )
661+
SPEED = $(shell grep --max-count=1 --regexp="Serial.begin" $(LOCAL_INO_SRCS) | sed -e 's/\t//g' -e 's/\/\/.*$$//g' -e 's/(/\t/' -e 's/)/\t/' | awk -F '\t' '{print $$2}' )
662662
MONITOR_BAUDRATE = $(findstring $(SPEED),300 1200 2400 4800 9600 14400 19200 28800 38400 57600 115200)
663663

664664
ifeq ($(MONITOR_BAUDRATE),)

0 commit comments

Comments
 (0)