aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2019-02-19Add XInput string descriptorsDavid Madison
2019-02-19Add XInput device and config descriptorsDavid Madison
2019-02-17Removed USB CDC SerialDavid Madison
This will compile but will NOT enumerate properly without a config descriptor. You've been warned...
2019-02-15Replace Serial with nullDavid Madison
Allows sketches using Serial to compile but discards all data
2019-02-15Fix warning related to disabling Pluggable HIDDavid Madison
Unused if pluggable USB is not enabled. Should submit a PR to fix this in the main repo...
2019-02-15Disable Pluggable USBDavid Madison
Not compatible with XInput, which requires a static descriptor
2019-02-15Remove HID libraryDavid Madison
Can't be used since PluggableHID and XInput are mutually exclusive
2019-02-15Use "w/ XInput" suffix on all board namesDavid Madison
Distinguish at a glance from the 'normal' boards in the IDE
2019-02-15Merge pull request #1 from dmadison/forkingDavid Madison
Forking
2019-02-15Remove non-USB boardsDavid Madison
Removes boards from boards.txt, bootloaders for those boards, and variants for those boards. As none of these boards support USB there's no reason to keep them around.
2019-02-15Delete 'firmwares' folderDavid Madison
2019-02-15Delete 'extras' folderDavid Madison
2019-02-15Delete programmers.txtDavid 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-03Fix compiler warnings about ignored 'const' in EEPROM.hBrian Park
2018-09-03Treat narrowing conversion as warning, not errorPaulStoffregen
2018-05-09Starting 1.6.22Martino Facchin
2018-04-12Update DigitalPotControl.inoSimonePDA
Fixing SPI communication with a delay as pointe out in #6395
2018-03-02Publish avr core 1.6.21 (maintenance release)Martino Facchin
2018-02-19Add menu for Nano with Optiboot bootloaderMartino Facchin
Since we are now factory flashing obtiboot, 115200 is the new default upload speed. Adding a new entry to CPU menu is more explicit than adding an "upload speed" menu, and the bootloader path can be updated too. Fixes https://github.com/arduino/Arduino/issues/4492
2017-12-18Fix MCUs without MPCM0 registerMartino Facchin
2017-11-13Fix flush hanging issueJohn Holman
Make write to UDR and clearing of TXC bit in flush() atomic to avoid race condition. Fixes #3745 (second different issue introduced later but discussed in the same issue)
2017-11-13Improve how TXCn bit is cleared in USCRnA registerJohn Holman
Preserve values of configuration bits MPCMn and U2Xn. Avoid setting other read-only bits for datasheet conformance. See #3745
2017-11-13Prevent buffer retransmission when transmit buffer is emptyJohn Holman
Moving the head buffer pointer and setting interrupt flag is now atomic in write(). Previously an intervening ISR could empty the buffer before the second ISR is triggered causing retransmission. Fixes: #3745 (original issue only)
2017-11-13Create macro to guard critical sections for large transmit buffersJohn Holman
New macro TX_BUFFER_ATOMIC makes the following code block atomic only if the transmit buffer is larger than 256 bytes. SREG is restored on completion. The macro is then used to simplify code for availableForWrite()
2017-11-13UnConfigured I2C Slave ISR Causing Rebootchuck todd
In a MultiMaster I2C environment, The Default value of 0xFE in the TWAR cause the Arduino to respond as an I2C Slave device at address 0x7f. If the Wire.h library was not configured as a I2C Slave, `Wire.begin(slaveID);` the Callbacks for `twi_onSlaveTransmit()` and `twi_onSlaveReceive()` are never initialized. But, they are called during servicing the TWI ISR. This causes a reboot of the Arduino by jumping to an uninitialized function address (0). So, this fix initializes them to the Default Wire.h handler which will respond correctly even during Master Mode operations. A MASTER MODE only Arduino will respond to all Slave Calls that match TWAR, Unless the TWEA bit is disabled outside of Master Transactions. Chuck. It also initialized the TWAR to the General Call ID (0x0) and Disables General Call responses. Chuck.
2017-11-13Always read key to check for new LUFA bootloaderScott Allen
Instead of checking for the NEW_LUFA_SIGNATURE once in program memory and then setting a flag which is used for further checks, a function is used that always checks program memory directly. If a flag is used, there's a slight chance that its location in RAM could fall on MAGIC_KEY_POS. In this case, an aborted USB auto-reset sequence may fail.
2017-11-13Don't use line coding to trigger USB auto-resetScott Allen
An auto-reset invoked using USB CDC is triggered by the port closing (when set to 1200 baud). Closing of the port is indicated by DTR going inactive. There is no need to have auto-reset invoked by a CDC_SET_LINE_CODING command. Only the CDC_SET_CONTROL_LINE_STATE command, which indicates a change in the state of DTR, should be used.
2017-11-13Save/restore the watchdog during USB auto-resetScott Allen
The state of the watchdog timer is saved during a USB auto-reset and then restored if the reset is aborted, in case the sketch is using the watchdog.
2017-11-13Fix save/restore of magic key location during resetScott Allen
In the USB CDC code to invoke an auto-reset, the magic key location could be restored before it had actually been saved. The sketch would then have a corrupted value at this location. This fix prevents the value from being restored if it hasn't previously been saved.
2017-11-13Updated Arduino as ISP settingNico
2017-11-13Create timer0 overflow interrupt service routine for all ATtinies not just ↵Torben Nielsen
24, 44 and 84
2017-11-13[WIRE] Remove extra line from digital_potentiometer exampleQuswar Mahmood Abid
2017-11-13Add extras folder for packagein and CIMartino 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-07-18Use correct part names in Tools > Processor menusper1234
It's ATmega328P, not ATmega328. Partially solves https://github.com/arduino/Arduino/issues/6369
2017-07-07Update comments to reflect Stream functions changed from private to protectedper1234
These functions were changed from private to protected in https://github.com/arduino/Arduino/commit/99f2a2755349784835130147e46cb61659b85893 but the comments were not updated at that time. In conjunction with equivalent pull requests to Arduino SAM Boards and Arduino SAMD Boards, solves https://github.com/arduino/Arduino/issues/6146.
2017-05-31Updated bundled AVR core to 1.6.19Cristian Maglie
2017-05-23Removed unneeded include in Print.hCristian Maglie
see https://github.com/arduino/Arduino/pull/5789#discussion_r118007759
2017-05-23Move the flush method from Stream to PrintMatthijs Kooijman
This method originally flushed pending input bytes, which makes sense in Stream. At some point it was changed to flush output bytes instead, but it was never moved to Print to reflect this. Since Stream inherits from Print, this should not really affect any users of the Stream or Print classes. However to prevent problems with existing implementations of the Print class that do not provide a flush() implementation, a default implementation is provided. We should probably remove this at some point in the future, though.
2017-05-16Add Print::availableForWriteEric Wieser
If available() is in the base Stream class, then availableForWrite() should be in the base Print class
2017-03-20Fixed warning about unused variableCristian Maglie
2017-03-20upd: build.boardsergiotomasello
2017-03-16use IAD Descriptor for device descriptor per the definition in "USB 2.0 ECN ↵liu nick
Interface Association Descriptor" and "USB Interface Association Descriptor Device Class Code and Use Model"
2017-03-16[AVR] USB send ZLP when neededCristian Maglie
See #5732 #4864 #4138 #3946
2017-03-16Revert "Subtract one from USB_EP_SIZE in USB_SendSpace"Cristian Maglie
This reverts commit 817d700a7503b269f986075cad637ce56c657e37.
2017-03-14upd: uno wifi with wifi linksergiotomasello
compatibility of uno wifi dev. ed. with wifi link library
2017-03-08AVR: Prevent warnings if BIN is previously definedCristian Maglie
Fix #4784 Close #4791