Commit Graph

1557 Commits

Author SHA1 Message Date
Cristian Maglie 2663be1727 Release 1.6.23 2018-09-10 11:45:34 +02:00
Brian Park 6848ea443c Fix compiler warnings about ignored 'const' in EEPROM.h 2018-09-03 17:27:58 +02:00
PaulStoffregen 1db33d24b7 Treat narrowing conversion as warning, not error 2018-09-03 17:26:35 +02:00
Martino Facchin b7c607663f Starting 1.6.22 2018-05-09 16:45:21 +02:00
SimonePDA 380241dd17 Update DigitalPotControl.ino
Fixing SPI communication with a delay as pointe out in #6395
2018-04-12 10:21:36 +02:00
Martino Facchin 3d09a51bd2 Publish avr core 1.6.21 (maintenance release) 2018-03-02 15:58:54 +01:00
Martino Facchin 1b14cc0733 Add menu for Nano with Optiboot bootloader
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
2018-02-19 14:53:30 +01:00
Martino Facchin 6e235622ed Fix MCUs without MPCM0 register 2017-12-18 09:59:29 +01:00
John Holman 58006613a7 Fix flush hanging issue
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-13 17:46:47 +01:00
John Holman 99c294c5a2 Improve how TXCn bit is cleared in USCRnA register
Preserve values of configuration bits MPCMn and U2Xn.
Avoid setting other read-only bits for datasheet conformance.

See #3745
2017-11-13 17:46:47 +01:00
John Holman e9e43cf583 Prevent buffer retransmission when transmit buffer is empty
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-13 17:46:47 +01:00
John Holman d50e59781e Create macro to guard critical sections for large transmit buffers
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-13 17:46:47 +01:00
chuck todd f1c4cc6316 UnConfigured I2C Slave ISR Causing Reboot
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-13 17:45:33 +01:00
Scott Allen 7d4bca5041 Always read key to check for new LUFA bootloader
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-13 17:41:34 +01:00
Scott Allen 31223160eb Don't use line coding to trigger USB auto-reset
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-13 17:38:02 +01:00
Scott Allen 10e0811c52 Save/restore the watchdog during USB auto-reset
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-13 17:34:41 +01:00
Scott Allen 289faaa759 Fix save/restore of magic key location during reset
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-13 17:34:41 +01:00
Nico b084848f2e Updated Arduino as ISP setting 2017-11-13 16:37:40 +01:00
Torben Nielsen fb7c2cc02e Create timer0 overflow interrupt service routine for all ATtinies not just 24, 44 and 84 2017-11-13 16:16:43 +01:00
Quswar Mahmood Abid 6c861d8c70 [WIRE] Remove extra line from digital_potentiometer example 2017-11-13 12:42:12 +01:00
Martino Facchin b3b2f44491 Add extras folder for packagein and CI 2017-11-13 11:53:21 +01:00
Martino Facchin 3f63f2975e Update bundled avr core to 1.6.20 2017-08-18 15:58:02 +02:00
Varun Mehta 4866d9bef8 Fixed Serial Port Argument That May Include Spaces
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-25 14:13:13 +02:00
per1234 44ce914c8c Use correct part names in Tools > Processor menus
It's ATmega328P, not ATmega328.

Partially solves https://github.com/arduino/Arduino/issues/6369
2017-07-18 12:22:43 +02:00
per1234 f22b9cb94c Update comments to reflect Stream functions changed from private to protected
These functions were changed from private to protected in 99f2a27553 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-07-07 01:28:27 +02:00
Cristian Maglie cfcd44120e Updated bundled AVR core to 1.6.19 2017-05-31 15:27:36 +02:00
Cristian Maglie c7f8e5b207 Removed unneeded include in Print.h
see https://github.com/arduino/Arduino/pull/5789#discussion_r118007759
2017-05-23 17:03:42 +02:00
Matthijs Kooijman ba9d416862 Move the flush method from Stream to Print
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-23 17:03:42 +02:00
Eric Wieser 716fba8dd9 Add Print::availableForWrite
If available() is in the base Stream class, then availableForWrite() should be in the base Print class
2017-05-16 14:52:47 +02:00
Cristian Maglie 2a4e2b968f Fixed warning about unused variable 2017-03-20 17:36:08 +01:00
sergiotomasello ab4a502358 upd: build.board 2017-03-20 15:10:53 +01:00
liu nick 611df3c4cc use IAD Descriptor for device descriptor per the definition in "USB 2.0 ECN Interface Association Descriptor" and "USB Interface Association Descriptor Device Class Code and Use Model" 2017-03-16 19:38:01 +02:00
Cristian Maglie 3b0765979d [AVR] USB send ZLP when needed
See #5732 #4864 #4138 #3946
2017-03-16 19:35:47 +02:00
Cristian Maglie f27e8fe194 Revert "Subtract one from USB_EP_SIZE in USB_SendSpace"
This reverts commit 817d700a7503b269f986075cad637ce56c657e37.
2017-03-16 19:35:47 +02:00
sergiotomasello 942744d800 upd: uno wifi with wifi link
compatibility of uno wifi dev. ed. with wifi link library
2017-03-14 19:04:39 +02:00
Cristian Maglie 1138485b6d AVR: Prevent warnings if BIN is previously defined
Fix #4784
Close #4791
2017-03-08 13:34:17 +01:00
Adrien Descamps 7486021e93 fix extended fuse bits for ethernet board
Forgot to fix ethernet board in previous commit
2017-03-07 12:25:54 +01:00
Adrien Descamps c86587a21a Set unused bits of extended fuse to 1
Avrdude has changed the way it handle unused bits in the extended fuse for atmega 328 and atmega 168, they are now at 1 instead of 0.
See http://svn.savannah.nongnu.org/viewvc?view=rev&root=avrdude&revision=1335 for more info.
This causes avrdude to fail when one try to write the fuse with the unused bits at 0, because the value it read back is not the same than the one it tried to write. This commit fixes the fuse value for all boards that use atmega328 or 168.
2017-03-07 12:25:54 +01:00
Martino Facchin 2fe94a28cf Update bundled avr core version to 1.6.18 2017-02-08 17:50:04 +01:00
Sandeep Mistry 5a05bf01f4 Add virtual beginMulticast(...) stub to UDP class 2017-02-08 15:33:41 +01:00
Martino Facchin 045d83b2e5 Merge branch 'master' into stk500-jtagice3 2017-02-08 12:56:49 +01:00
Martino Facchin 7ed370a671 Add Atmel-ICE as AVR programmer 2017-02-08 12:48:47 +01:00
Martino Facchin 807c19b647 [AVR] update to 1.6.17 2017-01-09 12:11:58 +01:00
Martino Facchin af7655dfcc Merge pull request #5815 from roncapat/master
Change double quotes to single quotes
2017-01-09 10:43:59 +01:00
Patrick Roncagliolo a4227cf02c Remove old TODOs for non-standard ipv4 format support
Signed-off-by: Patrick Roncagliolo <ronca.pat@gmail.com>
2017-01-08 23:51:53 +01:00
Patrick Roncagliolo 5cd4e8c399 Change double quotes to single quotes
- "." is a string literal, and so is treated as the char '.' plus the null char '\0'.
- Single quotes reduces the necessary memory for this literal to only one char instead.
  A string literal as the one actually present may require the use of the
  method "write(const char *str)", so there could be also a performance overhead.
- Another reason to change quotes style is for consistency with line 235.

Signed-off-by: Patrick Roncagliolo <ronca.pat@gmail.com>
2017-01-07 19:48:12 +01:00
Martino Facchin 546721420d Properly escape avrdude.upload.network_pattern to handle spaces in path 2016-12-28 10:34:35 +01:00
Martino Facchin 845e043e62 Add arduinoOTA upload tool 2016-12-21 15:54:03 +01:00
Martino Facchin 0c92777bdd Add Arduino UNO Wifi board
Both serial and OTA upload methods

OTA upload uses the ESP8266 method with a custom upload tool (https://github.com/arduino/arduinoOTA)
2016-12-21 15:53:59 +01:00
Cristian Maglie 4f79c0f7f0 Merge branch 'master' of github.com:arduino/Arduino 2016-12-19 18:32:27 +01:00