aboutsummaryrefslogtreecommitdiff
path: root/platform.txt
AgeCommit message (Collapse)Author
2022-02-22Version 1.0.4v1.0.4Dave Madison
[skip ci]
2022-02-22Merge pull request #15 from dmadison/upstream-1.8.5Dave Madison
Merge upstream tag '1.8.5'
2022-02-22Version 1.0.3v1.0.3Dave Madison
[skip ci]
2022-02-22Merge tag '1.8.5' into upstream-1.8.5David Madison
2022-02-22Merge tag '1.8.4' into upstream-1.8.4David Madison
2022-02-16Release 1.8.5Martino Facchin
2021-11-30Fix legacy upload.network_pattern ruleSilvano Cerza
2021-11-23Release 1.8.4Martino Facchin
2021-10-14Added pluggable discovery/monitor definitionsCristian Maglie
2020-11-02Update platform specification URLs in configuration filesper1234
The Google Code URL in boards.txt is very outdated. The URL in platform.txt is to a more recent home of the content, which has been replaced with a link to the new location, but while I'm updating boards.txt, I might as well point both URLs to the real page.
2020-07-23Version 1.0.2v1.0.2Dave Madison
(forgot to change this for 1.0.1!)
2020-07-23Merge tag '1.8.3' into upstream-updatesDavid Madison
Release 1.8.3
2020-06-11Publish 1.8.3Martino Facchin
2020-04-28Added precompiled lib supportCristian Maglie
2019-12-02Release 1.8.2Cristian Maglie
2019-09-18Revert "Changed linking order, so precompiled libraries can use the Arduino ↵Alexander Entinger
c… (#52)" This reverts commit 41f15a1359943ccb3ec9666a2e28a2d15e9581fc.
2019-09-16Changed linking order, so precompiled libraries can use the Arduino c… (#52)Corjan85
* Changed linking order, so precompiled libraries can use the Arduino code functions. * Added 'compiler.libraries.ldflags', reverted object order in previous commit
2019-03-11Version 1.0.0David Madison
2019-03-06Change manufacturer stringDavid Madison
2019-02-15Change platform name to XInputDavid Madison
Required to separate this board set from the built-in AVR core
2018-09-10Release 1.6.23Cristian Maglie
2018-09-03Treat narrowing conversion as warning, not errorPaulStoffregen
2018-05-09Starting 1.6.22Martino Facchin
2018-03-02Publish avr core 1.6.21 (maintenance release)Martino Facchin
2017-08-18Update bundled avr core to 1.6.20Martino Facchin
2017-07-25Fixed Serial Port Argument That May Include SpacesVarun Mehta
Other paths in avrdude.upload.pattern are wrapped in double quotes, and this -P{serial.port} causes issues with some platforms. This allows serial port devices which include spaces and other characters. Without this fix a /dev/tty* or /dev/cu* device that includes a space in its name gets truncated when passed to avrdude. Error messages returned from avrdude are cryptic, and workarounds (symlinks) are prone to failure. Fixes #3693
2017-05-31Updated bundled AVR core to 1.6.19Cristian Maglie
2017-02-08Update bundled avr core version to 1.6.18Martino Facchin
2017-01-09[AVR] update to 1.6.17Martino Facchin
2016-12-28Properly escape avrdude.upload.network_pattern to handle spaces in pathMartino Facchin
2016-12-21Add arduinoOTA upload toolMartino Facchin
2016-12-21Add Arduino UNO Wifi boardMartino Facchin
Both serial and OTA upload methods OTA upload uses the ESP8266 method with a custom upload tool (https://github.com/arduino/arduinoOTA)
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