aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2015-05-28Merge pull request #3202 from Chris--A/randomSeedMartino Facchin
Modified randomSeed, now uses unsigned long.
2015-05-28Merge pull request #3211 from Chris--A/println-optimizeMartino Facchin
Println optimize
2015-05-28Merge pull request #3244 from Lauszus/INT2Cristian Maglie
Check if INT2 is actually defined before issuing warning in detachInterrupt
2015-05-28Merge pull request #3207 from chromhelm/masterMartino Facchin
Fixed bug with HWSerial flushing
2015-05-28Check if INT2 is actually defined before issuing warning in detachInterruptKristian Sloth Lauszus
This was caused after: https://github.com/arduino/Arduino/pull/3221
2015-05-24Add missing case to detachinterruptVictor Aprea
2015-05-22Indent fix.Cristian Maglie
2015-05-22zero delay fix, ADC prescaler fixCano
2015-05-22delayMicroseconds(): added support for 1Mhz, 12Mhz and 24MhzCano
1Mhz is a default clock speed on Atmega328, many users run it on the internal 1Mhz clock to save battery power. Up until now delayMicroseconds() function wasn't taking this frequencies into an account.
2015-05-22Optimize printLn calls.Chris--A
2015-05-21Fixed bug with flushingchromhelm
2015-05-21Modified randomSeed, now uses unsigned long.Chris--A
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