diff options
| author | Pierre DAVID <pdagog@gmail.com> | 2014-04-14 08:39:46 +0200 |
|---|---|---|
| committer | Sudar <sudar@sudarmuthu.com> | 2014-04-14 12:24:13 +0530 |
| commit | aa4c96ce50aca9a98abbe8b0acb334f74f500d57 (patch) | |
| tree | aa1da598efd8e98a0fbc6ad2e016a0ef5686ee39 | |
| parent | b42d05d8b1bcd204336c889c9d83176e3dcea17d (diff) | |
Allow spaces in "Serial.begin (....)"
Fix #190
Fix #191
| -rw-r--r-- | Arduino.mk | 2 | ||||
| -rw-r--r-- | HISTORY.md | 3 |
2 files changed, 4 insertions, 1 deletions
@@ -702,7 +702,7 @@ endif ifeq ($(strip $(NO_CORE)),) ifndef MONITOR_BAUDRATE ifeq ($(words $(LOCAL_PDE_SRCS) $(LOCAL_INO_SRCS)), 1) - SPEED = $(shell egrep -h 'Serial.begin\([0-9]+\)' $(LOCAL_PDE_SRCS) $(LOCAL_INO_SRCS) | sed -e 's/[^0-9]//g'| head -n1) + SPEED = $(shell egrep -h 'Serial.begin *\([0-9]+\)' $(LOCAL_PDE_SRCS) $(LOCAL_INO_SRCS) | sed -e 's/[^0-9]//g'| head -n1) MONITOR_BAUDRATE = $(findstring $(SPEED),300 1200 2400 4800 9600 14400 19200 28800 38400 57600 115200) endif @@ -4,6 +4,9 @@ A Makefile for Arduino Sketches The following is the rough list of changes that went into different versions. I tried to give credit whenever possible. If I have missed anyone, kindly add it to the list. +### 1.3.4 (In development) +- Tweak: Allow spaces in "Serial.begin (....)". (Issue #190) (https://github.com/pdav) + ### 1.3.3 (2014-04-12) - Fix: Make a new manpage for ard-reset-arduino. Fixes issue #188 (https://github.com/sej7278) |
