From abbd020bf4dcfe596f1d27d2f19b6128d49ffdc8 Mon Sep 17 00:00:00 2001 From: Simon John Date: Thu, 9 Jul 2015 18:05:28 +0200 Subject: Preserve source extension for object files. Needed to fix the new wiring_pulse.S in IDE 1.6.5 which also has a wiring_pulse.c source file. Mostly rebased @peplin's PR #266, so should allow us to support newer chipKIT builds too. --- HISTORY.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'HISTORY.md') diff --git a/HISTORY.md b/HISTORY.md index 6f830d2..e62ab94 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -9,12 +9,13 @@ I tried to give credit whenever possible. If I have missed anyone, kindly add it - New: Add more board examples to Blink demo (https://github.com/sej7278) - New: Add option to split avrdude MCU from avr-gcc MCU (Issue #357) (https://github.com/hhgarnes) - New: Add support for /dev/tty.wchusbserial* (comes with cheap clones - DCCduino) (https://github.com/biesiad) -- New: Add support for picocom as serial monitor(https://github.com/biesiad) +- New: Add support for picocom as serial monitor (https://github.com/biesiad) - Tweak: Looks for submenu items first when parsing BOARDS_TXT (Issue #347) (https://github.com/sej7278) - Tweak: Various spelling/grammar/typo fixes (https://github.com/dcousens) - Tweak: Clarified some 1.5+ issues in docs (Issue #352) (https://github.com/sej7278) - Tweak: Added some more Continuous Integration tests (https://github.com/sej7278) - Tweak: Updated Fedora instructions (https://github.com/sej7278) +- Fix: Preserve original extension for object files, fixes parseIntASM (Issue #255, #364) (https://github.com/sej7278) ### 1.5 (2015-04-07) - New: Add support for new 1.5.x library layout (Issue #275) (https://github.com/lukasz-e) -- cgit v1.2.3 From 62fb4668c5c58264784fae9e04b38b2f5088c39c Mon Sep 17 00:00:00 2001 From: Simon John Date: Thu, 9 Jul 2015 20:13:16 +0200 Subject: fix typo, add more info about asm core sources --- HISTORY.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'HISTORY.md') diff --git a/HISTORY.md b/HISTORY.md index e62ab94..98b87e8 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -15,7 +15,7 @@ I tried to give credit whenever possible. If I have missed anyone, kindly add it - Tweak: Clarified some 1.5+ issues in docs (Issue #352) (https://github.com/sej7278) - Tweak: Added some more Continuous Integration tests (https://github.com/sej7278) - Tweak: Updated Fedora instructions (https://github.com/sej7278) -- Fix: Preserve original extension for object files, fixes parseIntASM (Issue #255, #364) (https://github.com/sej7278) +- Fix: Preserve original extension for object files, support asm sources in core, fixes pulseInASM (Issue #255, #364) (https://github.com/sej7278) ### 1.5 (2015-04-07) - New: Add support for new 1.5.x library layout (Issue #275) (https://github.com/lukasz-e) -- cgit v1.2.3 From 1fb7cddf0e632653e44619397fbc802df4e40136 Mon Sep 17 00:00:00 2001 From: Simon John Date: Tue, 14 Jul 2015 14:45:51 +0200 Subject: Add AVR Dragon commit info to HISTORY.md --- HISTORY.md | 1 + 1 file changed, 1 insertion(+) (limited to 'HISTORY.md') diff --git a/HISTORY.md b/HISTORY.md index 98b87e8..c97add8 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -6,6 +6,7 @@ I tried to give credit whenever possible. If I have missed anyone, kindly add it ### In Development +- New: Add AVR Dragon to list of ISP's without a port (https://github.com/mtnocean) - New: Add more board examples to Blink demo (https://github.com/sej7278) - New: Add option to split avrdude MCU from avr-gcc MCU (Issue #357) (https://github.com/hhgarnes) - New: Add support for /dev/tty.wchusbserial* (comes with cheap clones - DCCduino) (https://github.com/biesiad) -- cgit v1.2.3 From 8e787ca161df3c631a165d0ba48ac02efb07fcae Mon Sep 17 00:00:00 2001 From: Sven Dahlstrand Date: Sun, 6 Sep 2015 13:14:19 +0200 Subject: Make sure TARGET is set correctly when CURDIR contains spaces. With this fix the `TARGET` variable is set correctly when the project directory (or its path) contains spaces. So in this case: /Users/Joe/Dropbox (Personal)/example project `TARGET` will be set to `example_project` instead of `Dropbox example project` (like it was before this fix). --- HISTORY.md | 1 + 1 file changed, 1 insertion(+) (limited to 'HISTORY.md') diff --git a/HISTORY.md b/HISTORY.md index c97add8..2c98b35 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -17,6 +17,7 @@ I tried to give credit whenever possible. If I have missed anyone, kindly add it - Tweak: Added some more Continuous Integration tests (https://github.com/sej7278) - Tweak: Updated Fedora instructions (https://github.com/sej7278) - Fix: Preserve original extension for object files, support asm sources in core, fixes pulseInASM (Issue #255, #364) (https://github.com/sej7278) +- Fix: Make sure TARGET is set correctly when CURDIR contains spaces. ### 1.5 (2015-04-07) - New: Add support for new 1.5.x library layout (Issue #275) (https://github.com/lukasz-e) -- cgit v1.2.3 From 7efd0ccd2c420a369f4934553c3e98c1de187e02 Mon Sep 17 00:00:00 2001 From: Simon John Date: Mon, 7 Sep 2015 11:21:43 +0100 Subject: Added contributor details to history --- HISTORY.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'HISTORY.md') diff --git a/HISTORY.md b/HISTORY.md index 2c98b35..e28f896 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -17,7 +17,7 @@ I tried to give credit whenever possible. If I have missed anyone, kindly add it - Tweak: Added some more Continuous Integration tests (https://github.com/sej7278) - Tweak: Updated Fedora instructions (https://github.com/sej7278) - Fix: Preserve original extension for object files, support asm sources in core, fixes pulseInASM (Issue #255, #364) (https://github.com/sej7278) -- Fix: Make sure TARGET is set correctly when CURDIR contains spaces. +- Fix: Make sure TARGET is set correctly when CURDIR contains spaces (https://github.com/svendahlstrand) ### 1.5 (2015-04-07) - New: Add support for new 1.5.x library layout (Issue #275) (https://github.com/lukasz-e) -- cgit v1.2.3 From 44fe2270a2d1a2685c3682506ae92eeaa61ea4c5 Mon Sep 17 00:00:00 2001 From: Simon John Date: Sun, 13 Sep 2015 09:49:53 +0100 Subject: Ensure AVRDUDE_CONF is set when AVR_TOOLS_DIR is manually set by user, not just on Windows - fixes issue #381 Code around this area probably needs a tidy up at some point. --- HISTORY.md | 1 + 1 file changed, 1 insertion(+) (limited to 'HISTORY.md') diff --git a/HISTORY.md b/HISTORY.md index e28f896..c684539 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -18,6 +18,7 @@ I tried to give credit whenever possible. If I have missed anyone, kindly add it - Tweak: Updated Fedora instructions (https://github.com/sej7278) - Fix: Preserve original extension for object files, support asm sources in core, fixes pulseInASM (Issue #255, #364) (https://github.com/sej7278) - Fix: Make sure TARGET is set correctly when CURDIR contains spaces (https://github.com/svendahlstrand) +- Fix: Ensure AVRDUDE_CONF is set when AVR_TOOLS_DIR is, not just on Windows (Issue #381) (https://github.com/sej7278) ### 1.5 (2015-04-07) - New: Add support for new 1.5.x library layout (Issue #275) (https://github.com/lukasz-e) -- cgit v1.2.3 From af17878bc4efa0a7aefce5e47b0ad44454c06c70 Mon Sep 17 00:00:00 2001 From: Simon John Date: Tue, 15 Sep 2015 00:00:30 +0100 Subject: Replace $VENDOR with $ARDMK_VENDOR as $VENDOR is a tcsh environment variable. $ARCHITECTURE is probably safe as that's usually called $ARCH. Fixes issue #386. Need to decide if this is going to upset too many user's who have already started using $VENDOR - and who uses tcsh? ;-) --- HISTORY.md | 1 + 1 file changed, 1 insertion(+) (limited to 'HISTORY.md') diff --git a/HISTORY.md b/HISTORY.md index c684539..2ce6142 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -19,6 +19,7 @@ I tried to give credit whenever possible. If I have missed anyone, kindly add it - Fix: Preserve original extension for object files, support asm sources in core, fixes pulseInASM (Issue #255, #364) (https://github.com/sej7278) - Fix: Make sure TARGET is set correctly when CURDIR contains spaces (https://github.com/svendahlstrand) - Fix: Ensure AVRDUDE_CONF is set when AVR_TOOLS_DIR is, not just on Windows (Issue #381) (https://github.com/sej7278) +- Fix: Rename VENDOR to ARDMK_VENDOR to workaround tcsh issue (Issue #386) (https://github.com/sej7278) ### 1.5 (2015-04-07) - New: Add support for new 1.5.x library layout (Issue #275) (https://github.com/lukasz-e) -- cgit v1.2.3 From cba515531cdebc1bcb65527a1682a0e7ff362f5a Mon Sep 17 00:00:00 2001 From: Thomas Kilian Date: Mon, 21 Sep 2015 23:39:21 +0200 Subject: added missing quote in RAEDME.md and fix-note in HISTORY.md --- HISTORY.md | 1 + 1 file changed, 1 insertion(+) (limited to 'HISTORY.md') diff --git a/HISTORY.md b/HISTORY.md index 2ce6142..4ccf650 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -20,6 +20,7 @@ I tried to give credit whenever possible. If I have missed anyone, kindly add it - Fix: Make sure TARGET is set correctly when CURDIR contains spaces (https://github.com/svendahlstrand) - Fix: Ensure AVRDUDE_CONF is set when AVR_TOOLS_DIR is, not just on Windows (Issue #381) (https://github.com/sej7278) - Fix: Rename VENDOR to ARDMK_VENDOR to workaround tcsh issue (Issue #386) (https://github.com/sej7278) +- Fix: Document OSX 1.0/1.6 ARDUINO_DIR differences (https://github.com/thomaskilian) ### 1.5 (2015-04-07) - New: Add support for new 1.5.x library layout (Issue #275) (https://github.com/lukasz-e) -- cgit v1.2.3 From edcaa8557b1117dcee96b3a7c4d6fa736d80ac81 Mon Sep 17 00:00:00 2001 From: Albert Pretorius Date: Mon, 26 Oct 2015 19:07:53 +0000 Subject: Better parsing of boards.txt file which allows Adafruit Trinket to be used --- HISTORY.md | 1 + 1 file changed, 1 insertion(+) (limited to 'HISTORY.md') diff --git a/HISTORY.md b/HISTORY.md index 4ccf650..7e8029b 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -6,6 +6,7 @@ I tried to give credit whenever possible. If I have missed anyone, kindly add it ### In Development +- Tweak: Add support for Adafruit trinket3/trinket5/protrinket3/protrinket5 by improved BOARDS_TXT parsing - New: Add AVR Dragon to list of ISP's without a port (https://github.com/mtnocean) - New: Add more board examples to Blink demo (https://github.com/sej7278) - New: Add option to split avrdude MCU from avr-gcc MCU (Issue #357) (https://github.com/hhgarnes) -- cgit v1.2.3 From fb2567e7fb3ae8c50eea79bbd1524609587b5b03 Mon Sep 17 00:00:00 2001 From: Albert Pretorius Date: Tue, 27 Oct 2015 21:29:32 +0000 Subject: correct HISTORY.md order --- HISTORY.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'HISTORY.md') diff --git a/HISTORY.md b/HISTORY.md index 7e8029b..62f74dc 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -6,12 +6,12 @@ I tried to give credit whenever possible. If I have missed anyone, kindly add it ### In Development -- Tweak: Add support for Adafruit trinket3/trinket5/protrinket3/protrinket5 by improved BOARDS_TXT parsing - New: Add AVR Dragon to list of ISP's without a port (https://github.com/mtnocean) - New: Add more board examples to Blink demo (https://github.com/sej7278) - New: Add option to split avrdude MCU from avr-gcc MCU (Issue #357) (https://github.com/hhgarnes) - New: Add support for /dev/tty.wchusbserial* (comes with cheap clones - DCCduino) (https://github.com/biesiad) - New: Add support for picocom as serial monitor (https://github.com/biesiad) +- Tweak: Add support for Adafruit trinket3/trinket5/protrinket3/protrinket5 by improved BOARDS_TXT parsing (Issue #393) (https://github/com/zabereer) - Tweak: Looks for submenu items first when parsing BOARDS_TXT (Issue #347) (https://github.com/sej7278) - Tweak: Various spelling/grammar/typo fixes (https://github.com/dcousens) - Tweak: Clarified some 1.5+ issues in docs (Issue #352) (https://github.com/sej7278) -- cgit v1.2.3 From 9115d9e030757300995616d967709746ab8060f2 Mon Sep 17 00:00:00 2001 From: Simon John Date: Wed, 16 Dec 2015 18:27:31 +0000 Subject: Fixed "make show_boards" regex to allow for hyphens in BOARD_TAG e.g. attiny44-20, thanks to Atmel for the sample chip! --- HISTORY.md | 1 + 1 file changed, 1 insertion(+) (limited to 'HISTORY.md') diff --git a/HISTORY.md b/HISTORY.md index 62f74dc..39a3522 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -22,6 +22,7 @@ I tried to give credit whenever possible. If I have missed anyone, kindly add it - Fix: Ensure AVRDUDE_CONF is set when AVR_TOOLS_DIR is, not just on Windows (Issue #381) (https://github.com/sej7278) - Fix: Rename VENDOR to ARDMK_VENDOR to workaround tcsh issue (Issue #386) (https://github.com/sej7278) - Fix: Document OSX 1.0/1.6 ARDUINO_DIR differences (https://github.com/thomaskilian) +- Fix: Fix regex to support BOARD_TAGs with hyphens e.g. attiny44-20 (https://github.com/sej7278) ### 1.5 (2015-04-07) - New: Add support for new 1.5.x library layout (Issue #275) (https://github.com/lukasz-e) -- cgit v1.2.3 From c67f505a710c594c36974d23b3223a95aabd9c8f Mon Sep 17 00:00:00 2001 From: Simon John Date: Mon, 28 Dec 2015 10:05:53 +0000 Subject: Removed the check for BOOTLOADER_PATH being empty as its merged into BOOTLOADER_FILE in 1.5+ Now we just check for BOOTLOADER_FILE being non-empty on both versions. Fixes issue #402 --- HISTORY.md | 1 + 1 file changed, 1 insertion(+) (limited to 'HISTORY.md') diff --git a/HISTORY.md b/HISTORY.md index 39a3522..47f1dc8 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -23,6 +23,7 @@ I tried to give credit whenever possible. If I have missed anyone, kindly add it - Fix: Rename VENDOR to ARDMK_VENDOR to workaround tcsh issue (Issue #386) (https://github.com/sej7278) - Fix: Document OSX 1.0/1.6 ARDUINO_DIR differences (https://github.com/thomaskilian) - Fix: Fix regex to support BOARD_TAGs with hyphens e.g. attiny44-20 (https://github.com/sej7278) +- Fix: Remove check for BOOTLOADER_PATH, just check for BOOTLOADER_FILE (Issue #402) (https://github.com/sej7278) ### 1.5 (2015-04-07) - New: Add support for new 1.5.x library layout (Issue #275) (https://github.com/lukasz-e) -- cgit v1.2.3 From 745b520dd6de348c2016a9c699b8590290819195 Mon Sep 17 00:00:00 2001 From: Gaute Hope Date: Mon, 8 Feb 2016 23:09:56 +0100 Subject: ard-reset-arduino: support pyserial 3.0 --- HISTORY.md | 1 + 1 file changed, 1 insertion(+) (limited to 'HISTORY.md') diff --git a/HISTORY.md b/HISTORY.md index 47f1dc8..07b8e68 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -24,6 +24,7 @@ I tried to give credit whenever possible. If I have missed anyone, kindly add it - Fix: Document OSX 1.0/1.6 ARDUINO_DIR differences (https://github.com/thomaskilian) - Fix: Fix regex to support BOARD_TAGs with hyphens e.g. attiny44-20 (https://github.com/sej7278) - Fix: Remove check for BOOTLOADER_PATH, just check for BOOTLOADER_FILE (Issue #402) (https://github.com/sej7278) +- Fix: Port ard-reset-arduino to pyserial 3.0 (#407, #408) (https://github.com/gauteh) ### 1.5 (2015-04-07) - New: Add support for new 1.5.x library layout (Issue #275) (https://github.com/lukasz-e) -- cgit v1.2.3 From a1832e2759a47f989d9d3e242f76bde8ff6977ab Mon Sep 17 00:00:00 2001 From: andrew hutchison Date: Fri, 19 Feb 2016 15:08:51 -0700 Subject: update changelog to reflect show_submenu target --- HISTORY.md | 1 + 1 file changed, 1 insertion(+) (limited to 'HISTORY.md') diff --git a/HISTORY.md b/HISTORY.md index 07b8e68..a6a8b4d 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -6,6 +6,7 @@ I tried to give credit whenever possible. If I have missed anyone, kindly add it ### In Development +- New: Add show_submenu target (https://github.com/drewhutchison) - New: Add AVR Dragon to list of ISP's without a port (https://github.com/mtnocean) - New: Add more board examples to Blink demo (https://github.com/sej7278) - New: Add option to split avrdude MCU from avr-gcc MCU (Issue #357) (https://github.com/hhgarnes) -- cgit v1.2.3 From c0fea5ccd9d4db662c2a64e8c390d671d138bae7 Mon Sep 17 00:00:00 2001 From: Sudar Muthu Date: Mon, 22 Feb 2016 17:21:46 +0530 Subject: Bump up version to v1.5.1 for release --- HISTORY.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'HISTORY.md') diff --git a/HISTORY.md b/HISTORY.md index a6a8b4d..13dde6e 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -4,7 +4,7 @@ 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. -### In Development +### 1.5.1 (Debian version: 1.5-3) (2016-02-22) - New: Add show_submenu target (https://github.com/drewhutchison) - New: Add AVR Dragon to list of ISP's without a port (https://github.com/mtnocean) -- cgit v1.2.3