Commit Graph

1927 Commits

Author SHA1 Message Date
Martino Facchin 39bb83d32a Update bundled avr core to 1.6.20 2017-08-18 15:58:02 +02:00
Varun Mehta 0fc235da76 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 dc5827e08b 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 9411fa8c2b 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 cd798abd1b Releasing 1.8.3 2017-05-31 17:03:10 +02:00
Cristian Maglie 5e95561900 Updated bundled AVR core to 1.6.19 2017-05-31 15:27:36 +02:00
Cristian Maglie d4a9452ed6 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 ed7007c010 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 db4a5408ce 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
Martino Facchin b439a7727a Release avr core 1.6.18 2017-03-20 18:23:35 +01:00
Cristian Maglie 3994509ff7 Fixed warning about unused variable 2017-03-20 17:36:08 +01:00
sergiotomasello 75e7b6b1b3 upd: build.board 2017-03-20 15:10:53 +01:00
liu nick 40e7b1db39 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 3c0f26d6a8 [AVR] USB send ZLP when needed
See #5732 #4864 #4138 #3946
2017-03-16 19:35:47 +02:00
Cristian Maglie a707f0ba4d Revert "Subtract one from USB_EP_SIZE in USB_SendSpace"
This reverts commit 817d700a75.
2017-03-16 19:35:47 +02:00
sergiotomasello 9f0eaafed4 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 c6bac06406 AVR: Prevent warnings if BIN is previously defined
Fix #4784
Close #4791
2017-03-08 13:34:17 +01:00
Adrien Descamps a700af1b4d 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 a899b9e1a8 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 7434443d58 Update bundled avr core version to 1.6.18 2017-02-08 17:50:04 +01:00
Martino Facchin d6a42b88a1 Update arduinoOTA to 1.1.1 2017-02-08 17:50:04 +01:00
Martino Facchin b931d63df5 Update avrdude to 6.3.0-arduino9 2017-02-08 17:50:04 +01:00
Martino Facchin 2d0ef4a07a Update avr-gcc to avr-gcc-4.9.2-atmel3.5.4-arduino2 2017-02-08 17:50:04 +01:00
Sandeep Mistry 26ae0ac868 Add virtual beginMulticast(...) stub to UDP class 2017-02-08 15:33:41 +01:00
Martino Facchin dfea164dfe Merge branch 'master' into stk500-jtagice3 2017-02-08 12:56:49 +01:00
Martino Facchin 2870bae7c9 Add Atmel-ICE as AVR programmer 2017-02-08 12:48:47 +01:00
Martino Facchin 2e98854703 Remove sam platform from IDE repo
Refer to https://github.com/arduino/ArduinoCore-sam for further development.
All the tagged issues will be moved to the new repo
PRs which only apply to SAM platform will need to be recreated instead
2017-02-08 12:44:31 +01:00
Martino Facchin 1cec7e4b97 [AVR] update to 1.6.17 2017-01-09 12:11:58 +01:00
Martino Facchin 5943595cef [SAM] update to 1.6.11 2017-01-09 12:09:49 +01:00
Martino Facchin b77957eb59 Merge pull request #5815 from roncapat/master
Change double quotes to single quotes
2017-01-09 10:43:59 +01:00
Patrick Roncagliolo 8418eecca7 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 e6a3b99697 Change quote style for single char in sam too
Signed-off-by: Patrick Roncagliolo <ronca.pat@gmail.com>
2017-01-07 19:49:48 +01:00
Patrick Roncagliolo 0f57225a66 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 006ec702e9 Properly escape avrdude.upload.network_pattern to handle spaces in path 2016-12-28 10:34:35 +01:00
Martino Facchin 33eae2eb4c Update package_index_bundled with official avr 1.6.16 data 2016-12-21 16:09:29 +01:00
Martino Facchin 43d8599371 Update samd core to 1.6.10 2016-12-21 16:06:10 +01:00
Martino Facchin a418f483f6 Add arduinoOTA upload tool 2016-12-21 15:54:03 +01:00
Martino Facchin 10bd41f5ac 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 3633f4dd25 Merge branch 'master' of github.com:arduino/Arduino 2016-12-19 18:32:27 +01:00
Cristian Maglie 0ec73fa71a Fixed build.board for some boards 2016-12-19 18:32:20 +01:00
Martino Facchin 6f2fd2f4c7 Fix Circuitplay tools reference (take 2) 2016-12-16 18:10:06 +01:00
Martino Facchin 8ae25b90bb Fix Circuitplay core and tools reference
While not plainly wrong, since the board is not contained in a 3rd party package, use the "baseline" reference method
2016-12-16 17:45:05 +01:00
Martino Facchin 1ac448a6b0 Update package_bundle with Arduino.org boards 2016-12-16 16:47:46 +01:00
Martino Facchin 686c78b2d0 Merge pull request #5731 from facchinm/tian_support
Add Arduino.org board definitions
2016-12-16 16:27:09 +01:00
Cristian Maglie b1f349244b Added empty efuse property for atmega8 bootloader rules
See #2075
2016-12-16 16:23:51 +01:00
Martino Facchin c6654889fb publish avr core 1.6.16 prerelease
remember to correct the core size and checksum when pushing the official core
2016-12-16 16:15:41 +01:00
Martino Facchin 53d8f2f439 Add ArduinoISP.org programmer
We'll need to patch avrdude with this new programmer type
https://github.com/platformio/platformio-core/issues/717
2016-12-16 10:59:00 +01:00
Martino Facchin 1a4e5e909d Adding Arduino.org new boards
Yun derived (Industrial101, YunMini, LininoOne) and Leonardo Ethernet
2016-12-16 10:59:00 +01:00
Cristian Maglie e48553ec57 Merge branch 'generate_dependencies_S' of https://github.com/facchinm/Arduino 2016-12-15 17:47:25 +01:00
Cristian Maglie e3c19d7ab3 Added Adafruit Circuits Playground board 2016-12-14 15:00:23 +01:00