aboutsummaryrefslogtreecommitdiff
path: root/platform.txt
AgeCommit message (Collapse)Author
2016-12-16publish avr core 1.6.16 prereleaseMartino Facchin
remember to correct the core size and checksum when pushing the official core
2016-11-23[AVR] Add -g to elf.flags to allow inclusion of debug symbols in elfMartino Facchin
Fixes #5539
2016-11-23[AVR] Add -MMD flag to generate depencencies files for S targetsMartino Facchin
2016-11-22Update bundled avr core to 1.6.15Martino Facchin
2016-09-29Set default values for Arduino AVR Boards upload.verify and program.verifyper1234
Arduino AVR Boards 1.6.11 added the {upload.verify} property to the tools.avrdude.upload recipe and {program.verify} to the tools.avrdude.program recipe to support the File > Preferences > Verify code after upload setting. In Arduino IDE versions 1.6.8 and previous upload.verify is set to true or false depending on the preferences setting which causes Upload to an AVR board with Arduino IDE 1.6.8 or older and Arduino AVR Boards 1.6.11 or newer to generate AVRDUDE commands like: avrdude -CC:\Users\per\AppData\Local\Arduino15\packages\arduino\tools\avrdude\6.3.0-arduino2/etc/avrdude.conf -v true -patmega328p -carduino -PCOM21 -b115200 -D -Uflash:w:C:\Users\per\AppData\Local\Temp\buildece560c1024a4a94b7c3b05be61aa2fc.tmp/sketch_sep28a.ino.hex:i program.verify is unset, which causes Upload Using Programmer to an AVR board with Arduino IDE 1.6.8 or older and Arduino AVR Boards 1.6.11 or newer to generate AVRDUDE commands like: avrdude -CC:\Users\per\AppData\Local\Arduino15\packages\arduino\tools\avrdude\6.3.0-arduino6/etc/avrdude.conf -v {program.verify} -patmega328p -cusbasp -Pusb -Uflash:w:C:\Users\per\AppData\Local\Temp\build77ff2e21c5523c5895e8d065447461cb.tmp/sketch_sep28a.ino.hex:i AVRDUDE 6.0.1 is able to ignore the spurious item in the command and successfully upload but when used with AVRDUDE 6.3.0 this causes upload to fail: avrdude: no programmer has been specified on the command line or the config file Specify a programmer using the -c option and try again This means that Arduino AVR Boards 1.6.12 and 1.6.14 are not backwards compatible with Arduino IDE 1.6.8 and previous. Setting a default empty value for the upload.verify and program.verify properties in platform.txt causes Arduino IDE 1.6.8 and older to generate an AVRDUDE command identical to that generated with Arduino AVR Boards 1.6.10 or older(meaning that, as previously, the preferences setting has no effect): avrdude -CC:\Users\per\AppData\Local\Arduino15\packages\arduino\tools\avrdude\6.3.0-arduino2/etc/avrdude.conf -v -patmega328p -carduino -PCOM21 -b115200 -D -Uflash:w:C:\Users\per\AppData\Local\Temp\buildece560c1024a4a94b7c3b05be61aa2fc.tmp/sketch_sep28a.ino.hex:i Arduino IDE 1.6.9 and newer overrides the default values of upload.verify and program.verify, therefore this change has no effect on the AVRDUDE command generated and verification is controlled by the preferences setting as usual. Tested back to Arduino IDE 1.6.2, the oldest IDE version that supports Boards Manager updates.
2016-09-21Update to avrdude 6.3 and avr core 1.6.14Martino Facchin
2016-08-11Use a specific hardware/package_index_bundled.json. AVR core version to 1.6.13Cristian Maglie
Previously, during the build, the full package_index.json was downloaded and distributed with the Arduino IDE. This lead to a situation where it was difficult to test new AVR cores before publishing them to the public package_index.json. Now the bundled AVR core is specificed in the file: `hardware/package_index_bundled.json` this index is loaded from the IDE at startup and the package_index.json is overlayed on it. This should also solve part of #5143 (Repeatable builds and snapshots of package/library indexes)
2016-08-09Revert "Bump avr core version to 1.6.13"Cristian Maglie
This must be made together with the release of AVR core 1.6.13. This reverts commit d20e60862344eb864ab384abe3d85f55c1845f3f.
2016-08-05Bump avr core version to 1.6.13Martino Facchin
2016-07-25Move lto flags before -Wl to fix Mega2560 "relax" substitutionMartino Facchin
2016-07-25publish avr core 1.6.12Martino Facchin
2016-07-25Enable LTOCristian Maglie
2016-07-25Added -fpermissive flag.Cristian Maglie
This avoid build errors on old libraries. It may possibly be removed in the future after a period of transition.
2016-05-10update AVR core to 1.6.11Martino Facchin
2016-05-10add support for remote upload on Yun shieldMartino Facchin
2016-04-15Implement Do-Not-Verify-After-Upload preference for Serial Uploadsgh-megabit
2016-04-04Add comment for archive_file_pathSandeep Mistry
2016-04-04Merge pull request #4737 from per1234/recipe_ar_pattern-backwards-compatibilitySandeep Mistry
AVR recipe.ar.pattern backwards compatibility
2016-03-22AVR recipe.ar.pattern backwards compatibilityper1234
Define archive_file_path in Arduino AVR Boards platform.txt to provide backwards compatibility with IDE versions previous to 1.6.6. The archive_file_path value set in platform.txt is overridden in IDE 1.6.6+. This produces avr-ar commands identical to the previous behavior.
2016-03-15Clean up comments in platform.txtper1234
- Remove comment in Arduino AVR Boards platform.txt about -w flag. This is no longer relevant since the compiler warning level is now set by the user. - Fix typos
2016-03-04AVR core version to 1.6.10Cristian Maglie
2015-11-18Modified AVR preproc recipe to match the one used by arduino-builderFederico Fissore
2015-11-03Updated avr core version to 1.6.9Cristian Maglie
2015-09-24{build.path}/{archive_file} is now {archive_file_path} in recipe.ar.patternFederico Fissore
2015-09-18Updating arduino-builder to 1.0.0-beta8Federico Fissore
2015-09-18Moved build artifacts into root build folderCristian Maglie
The intermediate files used for build (.o, .a ...) are still in subfolders to avoid conflicts. Fix #3807
2015-09-15Adding preprocessing recipes to AVR coreFederico Fissore
2015-08-27Release new boards as AVR core 1.6.8Cristian Maglie
2015-07-31Fix links to 3rd party hardware specification.Reilly Grant
The number of hyphens in this URL has apparently changed.
2015-07-16Enable C11 supportMatthijs Kooijman
This uses the gnu11 standard, which is C11 with GNU extensions. Previously, gnu89 was being used, which is pretty ancient by now. C99 brings some important improvements, some of which were already available and used even without this option. C11 is more recent and brings more minor improvements. Most notable feature is the static_assert statement, allowing checking invariants at compiletime using the full C expressions.
2015-07-16Enable C++11 supportMatthijs Kooijman
This uses the gnu++11 standard, which is C++11 with GNU extensions. C++11 should be full compatible with the previously used C++98 standards, so all pre-existing sketches should continue to work.
2015-07-16Explicitely specify C and C++ standards to useMatthijs Kooijman
This does not change anything, it just makes the defaults explicit.
2015-06-29Fixed missing "sketch" folders in some paths of both AVR and SAM coresFederico Fissore
2015-06-29Compiler: sketch files get compiled into "sketch"Federico Fissore
2015-05-07saveHex: rename recipe.hex -> recipe.outputArnav Gupta
Signed-off-by: Arnav Gupta <championswimmer@gmail.com>
2015-05-07update Sketch menu, add Save hex optionArnav Gupta
* Moving Upload options from "File" menu to "Sketch" menu as those are sketch actions more than file actions. Signed-off-by: Arnav Gupta <championswimmer@gmail.com>
2015-05-06AVR core version bumpFederico Fissore
2015-04-27Disabling uncertified warning, leaving vids/pidsFederico Fissore
2015-04-24Renamed compiler.warning_flags pref to compiler.warning_levelFederico Fissore
Provided a default value for compiler.warning_flags Releasing avr core 1.6.5
2015-04-23AVR: upgrading avr core versionFederico Fissore
2015-04-13Reviewed warnings key names and dropdown in PreferencesFederico Fissore
2015-04-13Better preference for setting warnings level. See ↵Federico Fissore
https://github.com/arduino/Arduino/commit/61592d78fa71c023e4f1577f7e2b6bada2661a13#commitcomment-10668365
2015-03-30Starting 1.6.3Federico Fissore
Updated toolchains: linux statically compiled, added gcc lto plugin (disabled)
2015-03-27Not using gcc version, hard to maintainFederico Fissore
2015-03-27avr platform: fixed avrdude pathFederico Fissore
2015-03-27Fixed platforms(.txt)Federico Fissore
2015-03-11Started working on 1.6.2Federico Fissore
2015-03-10Added warning for uncertified boardsFederico Fissore
2015-02-19Update revision log. Version set to 1.6.1.Cristian Maglie
2015-02-16"objcopy" recipes are no more tied to "hex" extensionCristian Maglie
This allow to define specific recipes for every platform but keeps backward compatibility. See #2614