diff options
| author | Simon John <git@the-jedi.co.uk> | 2015-03-27 16:11:27 +0000 |
|---|---|---|
| committer | Simon John <git@the-jedi.co.uk> | 2015-03-27 16:11:27 +0000 |
| commit | ce235b6bb3465452ebbe6ae257639cc550654287 (patch) | |
| tree | 6b70a327fc5d3fe51de48a5300b5151c163e2d76 /HISTORY.md | |
| parent | ab068291723dea83a97be9b9e32a61a01452c435 (diff) | |
Add = to PARSE_BOARD regex to make it less greedy.
For instance in the Sparkfun 1.6 core, we have:
promicro16.build.vid.0=0x1B4F
promicro16.build.vid.1=0x1B4F
promicro16.build.vid=0x1B4F
So we end up matching all 3 instead of just the last one.
Adding the = means we're looking for promicro16.build.vid= so
not catching the .0 or .1 version.
Diffstat (limited to 'HISTORY.md')
| -rw-r--r-- | HISTORY.md | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -30,6 +30,7 @@ I tried to give credit whenever possible. If I have missed anyone, kindly add it - Tweak: Ability to override `USB_TYPE` in Teensy.md (Issue #313) (https://github.com/Poofjunior) - Tweak: Integration instructions for CodeBlocks IDE (Issue #321) (https://github.com/fbielejec) - Tweak: Add BOARD_SUB to OBJDIR if defined in 1.5+ (https://github.com/sej7278) +- Tweak: Add = to PARSE_BOARD regex to make it less greedy and not match vid.0, vid.1 and vid (https://github.com/sej7278) - Fix: Improved Windows (Cygwin/MSYS) support (https://github.com/PeterMosmans) - Fix: Change "tinyladi" username to "ladislas" in HISTORY.md. (https://github.com/ladislas) |
