aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2015-05-20Due to website configuration changes, every url starting with ↵Federico Fissore
http://arduino.cc has been changed to http://www.arduino.cc. Fixes #3191
2015-05-19Libraries bundled with cores will take the type of that core, instead of ↵Federico Fissore
relying on an undocumented 'types' property. Fixes #2875
2015-05-14Merge pull request #3109 from agdl/fix_i2cexamplesFederico Fissore
Fix for #2969 (I2C reserved addresses)
2015-05-14Fixes #2969:Arturo Guadalupi
This fixes the Wire examples that uses I2C reserved address (from 0 to 7) substituting them with 8 that is the first one available and that can be used. I also modified the wire reference http://www.arduino.cc/en/reference/wire according to this fact.
2015-05-12RX and TX Serial buffer sizes can now be defined independentlyNico
Fixes #2597
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-05-06[gemma] Integration of Gemma boardCristian Maglie
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-21Fixed indentation in Stream.cpp, no code changeCristian Maglie
2015-04-21Fixed wrong bracket placement (see #3011)Cristian Maglie
2015-04-21Fixed: warning: comparison between signed and unsigned integer expressionsKristian Sloth Lauszus
2015-04-21Fixed: warning: suggest explicit braces to avoid ambiguous 'else'Kristian Sloth Lauszus
2015-04-17Merge pull request #2973 from ffissore/warningsFederico Fissore
Reviewed warnings key names and dropdown in Preferences
2015-04-14Merge branch 'jipp-master'Martino Facchin
2015-04-14Merge pull request #2961 from jan-r/issue292-fixMartino Facchin
Tone: fix for ATmega8
2015-04-13Fix for issue #292Jan
Replaced direct register manipulation with calls to bitWrite(). Fixed TIMSK5 usage on Leonardo (as well as some other preprocessor statements).
2015-04-13Reviewed warnings key names and dropdown in PreferencesFederico Fissore
2015-04-13Update Tone.cppjipp
Tone.cpp stops compile when TCCR0A/TCCR0B defined and WGM01 not defined #2923
2015-04-13Better preference for setting warnings level. See ↵Federico Fissore
https://github.com/arduino/Arduino/commit/61592d78fa71c023e4f1577f7e2b6bada2661a13#commitcomment-10668365
2015-04-11Update Tone.cppJan
Rebased the bugfix from the original Google Code issue #292 to work with Arduino 1.6.x Description of original fix provided by Pete62: The later 8 bit AVR's use two registers (TCCRxA, TCCRxB) whereas the ATmega8 only uses a single register (TCCR2) to house the control bits for Timer 2. Bits were inadvertently being cleared.
2015-03-30Platform.txt in-memory rewrite rules: whenever loaded, if a property is set ↵Federico Fissore
to a value known to be wrong/old, that property is replaced with the current/right value. This happens in-memory, no platform.txt file were harmed during rewriting Mitigate #2838
2015-03-30Starting 1.6.3Federico Fissore
Updated toolchains: linux statically compiled, added gcc lto plugin (disabled)
2015-03-27LibraryManager: better type filteringFederico Fissore
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-24Stream: set findMulti function as protectedMartino Facchin
let's not expose it until the API is not accepted widely by the dev mailing list
2015-03-24Merge pull request #2814 from facchinm/test_pr2696Martino Facchin
Fix findUntil in Stream library
2015-03-24Fix findUntil in Stream libraryJim Leonard (Xuth)
PR #2696 without timeout-related changes
2015-03-24Merge pull request #2812 from facchinm/test_pr2794Martino Facchin
EEPROM library V2
2015-03-24EEPROM: examples: fix Serial for board LeonardoMartino Facchin
2015-03-24Fixed EEPROM examples and added readmeChris--A
2015-03-20Updated EEPROM examples.Chris--A
Removed hard coded lengths, which were incorrect for standard Arduino's now.
2015-03-19Small tweaks to EEPROM lib and examples.Chris--A
2015-03-18Do not influence state of SS if it's already been set to an output ↵Victor Aprea
previously, e.g. by user sketch squashes and closes PR #2659
2015-03-18Updated EEPROM storage classChris--A
To avoid having a .cpp just for an extern variable definition, `static` has been chosen over `extern`. As the `EEPROMClass` class simply wraps functionality located elsewhere, it is completely compiled away. Even though each translation unit which includes the header will get a copy with internal linkage, there is no associated overhead. More info [here](http://stackoverflow.com/questions/29098518/extern-variable-only-in-header-unexpectedly-working-why)
2015-03-17Added additional examples to EEPROM libChris--A
2015-03-17Added new version of EEPROM library.Chris--A
2015-03-11Started working on 1.6.2Federico Fissore
2015-03-10Added warning for uncertified boardsFederico Fissore
2015-03-05Merge branch 'ide-1.5.x' into SoftwareSerialMartino Facchin
2015-03-05SoftwareSerial: match bool API with HardwareSerialMartino Facchin
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
2015-02-10rename hex -> outputArnav Gupta
using generic term 'output', because for samx32, output is .bin format and not .hex Signed-off-by: Arnav Gupta <championswimmer@gmail.com>
2015-02-05Corrected some email contacts.Cristian Maglie