aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2020-05-13Add "new" proxy header for compatibility with c++-standard #include<new>eudoxos
2020-05-04Merge pull request #337 from Max-Leopold/patch-1Martino Facchin
Correct comment on wiring_analog.c
2020-05-02Update comment on wiring_analog.cMaximilian Leopold
2020-04-28Added precompiled lib supportCristian Maglie
2020-03-19Merge pull request #318 from e28eta/typosMartino Facchin
Fix sine -> since typo in HardwareSerial files
2020-03-18Fix sine -> since typo in HardwareSerial filesDaniel Jackson
2019-12-02Release 1.8.2Cristian Maglie
2019-09-25Interrupt ordering for 32u2 and 16u2 MCU (#66)Manuel Reimer
* Interrupt ordering for 32u2 and 16u2 MCU * Added missing chip variants
2019-09-20Added SERIAL_PORT_MONITOR define to Arduino EthernetGiampiero Baggiani
Port of https://github.com/arduino/Arduino/pull/7023
2019-09-20Merge pull request #286 from arduino/remove-genuinoMartino Facchin
Remove Genuino Occurrences
2019-09-20Removed Genuino Micro and set to replace it with Arduino Micro on uploadCristian Maglie
2019-09-19Remove Genuino OccurrencesLuca Cipriani
2019-09-18Merge pull request #284 from arduino/revert-52-masterAlexander Entinger
Revert "Changed linking order, so precompiled libraries can be used"
2019-09-18Revert "Changed linking order, so precompiled libraries can use the Arduino ↵Alexander Entinger
c… (#52)" This reverts commit 41f15a1359943ccb3ec9666a2e28a2d15e9581fc.
2019-09-16Merge pull request #4 from awatterott/masterAlexander Entinger
No fixed value for USB power current.
2019-09-16Add i2c_scanner to example of Wire (#93)Asuki Kono
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-09-16Merge pull request #82 from luco5826/masterAlexander Entinger
Minor optimization in shiftOut function
2019-09-16Merge pull request #95 from jrowberg/masterAlexander Entinger
Cast pins to signed integers to avoid Wtype-limits compile warning
2019-09-16Merge pull request #92 from matthijskooijman/cdc-no-prototocol-atAlexander Entinger
Do not claim AT-protocol in CDC interface descriptor
2019-09-16Merge pull request #99 from gigoh/fix-bootloader-pathAlexander Entinger
Correct yunmini.bootloader.file on boards.txt
2019-09-16Merge pull request #100 from CombiesGit/patch-1Alexander Entinger
[TWI] Add __attribute__ ((fallthrough)) to remove recent GCC warnings
2019-09-16Merge pull request #31 from jamadagni/patch-1Alexander Entinger
Add `bitToggle` macro to complement `bitSet` etc
2019-09-16Merge branch 'master' into patch-1Alexander Entinger
2019-09-16Merge pull request #33 from Pharap/add-placement-newAlexander Entinger
Add placement new operator
2019-09-16Merge pull request #64 from paulrnash/paulrnash-intellisenseAlexander Entinger
Add parameter names to common prototypes
2019-09-16Adding parenthesis around 'bitvalue' allowing correct macro expansion when ↵Alexander Entinger
using with ternary operator such as bitWrite(value, bit, some_computed_value == 5 ? 1: 0);'
2019-09-16Merge pull request #76 from dmadison/pluggable-unusedAlexander Entinger
Fix unused variable warning for non-pluggable USB in SendDescriptor
2019-09-16Merge pull request #103 from zakkie/fix/remove_ifAlexander Entinger
Removes unnecessary if branch (because length is checked in while statement below the if-clause).
2019-09-04remove unnecessary if branchAkihiro YAMAZAKI
checking `length` in below while statement
2019-08-16Update twi.cCombiesGit
Added __attribute__ ((fallthrough));
2019-08-02rename yunmini.bootloader.file on boards.txtGeonil Goh
2019-07-29Add null pointer test to String destructorJeff Rowberg
2019-07-21Cast pins to signed integers to avoid Wtype-limits compile warningJeff Rowberg
2019-06-08Do not claim AT-protocol in CDC interface descriptorMatthijs Kooijman
The CDC code presents itself as a virtual serial port. However, it also sets the "bFunctionProtocol" value to 1, which means it supports AT-commands, which is not actually the case. This might cause problems with some software, such as ModemManager. Originally, ModemManager would be very liberal with probing serial devices, using a blacklist to prevent probing non-modems such as Arduinos. Since version 1.7.990, it has supported a "strict" mode where it tries to be more restrained in what devices it probes. For CDC ACM devices, this means it will only probe devices that claim to support AT-commands. However, it also stopped applying the blacklist (intending to eventually remove the blacklist), meaning it would again probe Arduinos. This new strict policy is not the upstream default, but is enabled in Debian (since Buster) and Ubuntu (since bionic 18.04.2). The proper way to fix this, is to not claim AT comand support in the USB device descriptor, which is what this commit does. The Arduino will still show up as a virtual serial port, just not be probed by ModemManager in strict mode. For the commit that introduced the strict mode in ModemManager, see https://cgit.freedesktop.org/ModemManager/ModemManager/commit/src?id=ee570d44dc117dc69f23e83313dd877f76c5e3e0
2019-05-16Merge pull request #51 from florian-schweiger/patch-1Martino Facchin
Remove historic Arduino 0012 workaround in SoftwareSerial
2019-04-26Fixed shiftOut in MSBFIRST mode HIGH/LOWluca
2019-04-26Minor optimization in shiftOut functionluca
2019-02-17Define descriptor return var in pluggable blockDavid Madison
Avoids unused variable warning if USB is enabled but pluggable USB is not
2019-01-21Add parameters names to common prototypesPaul R. Nash
Putting the parameter names in these commonly used prototypes makes syntax help like VS Code's Intellisense work 99% more useful. Without them, it doesn't give you the names of the parameters and you have to remember the semantics yourself. :(
2019-01-07Merge pull request #59 from paulo-raca/wiring_private_i2cMartino Facchin
Remove commented out code for I2C interrupts on WInterrupts.c
2019-01-04Remove commented out code for I2C interrupts on WInterrupts.cPaulo Costa
These are currently implemented by the Wire library, on twi.c
2018-12-19Merge pull request #54 from algernon/pull/wakeup-suspend-hooksMartino Facchin
Add USBDevice.isSuspended()
2018-12-19Merge pull request #56 from per1234/arduino-as-isp-atmega32u4-programmerMartino Facchin
Add ATmega32U4-compatible Arduino as ISP programmer
2018-12-19Add ATmega32U4-compatible Arduino as ISP programmerper1234
Use of the stk500v1 protocol for Arduino as ISP does not work with native USB boards on Windows. The arduino protocol does. However, the arduino protocol makes it more likely that boards with an external USB interface chip will require the auto-reset circuitry to be disabled to allow them to be used as Arduino as ISP. That adds extra complexity to a process already difficult for the average Arduino user. For this reason, a new programmer using the arduino protocol is added specifically for using native USB boards as Arduino as ISP and the previous Arduino as ISP configuration is retained for use with all other boards.
2018-12-19Revert "Updated Arduino as ISP setting"per1234
This reverts commit b084848f2eaf9ccb3ac9a64ac5492d91df4706bf.
2018-12-11Add USBDevice.isSuspended()Gergely Nagy
Based on code originally by Rob van der Veer <rob.c.veer@gmail.com>, this adds USBDevice.isSuspended(), so user sketches can run custom code in their `loop` methods after checking if the device is suspended or not. Signed-off-by: Gergely Nagy <algernon@keyboard.io>
2018-11-26Removed historic Arduino-0012 workaroundFlorian Schweiger
Removed #undefs in SoftwareSerial.h that were marked as Arduino 0012 workaround and that broke several macros, including abs. See https://github.com/arduino/ArduinoCore-avr/issues/30
2018-10-26Add noexcept specifier to placement new operatorPharap
The standard mandates that placement new should be have a noexcept specifier.
2018-09-10Release 1.6.23Cristian Maglie