Commit Graph

6637 Commits

Author SHA1 Message Date
kellerkindt ab4e114624 Fix buffer being overwritten by multiple twi_transmit calls
Fixes that more complex methods (like Stream::print(float)) do not work properly.

Without this fix, Wire.print(1.01f); results in '1' because Print::printFloat(double, uint8_t) performs multiple print() and therefore twi_transmit calls. Also Wire.println("Heyho"); results only in a newline character.
2016-06-05 03:01:57 +02:00
Martino Facchin 61323525b7 Remove highlighting for "string" lowercase literal 2016-05-31 10:38:56 +02:00
Sandeep Mistry 611003dd9a Update revision log 2016-05-30 14:24:36 -04:00
Sandeep Mistry 80e775066e Merge pull request #4996 from jantje/issue4993
fix for #4993
2016-05-30 14:23:28 -04:00
Martino Facchin cf39df15f6 Update sha for Temboo 1.1.6 2016-05-30 16:39:23 +02:00
Martino Facchin 0a49c5aa76 Update bundled Temboo library to 1.1.6 2016-05-30 15:53:51 +02:00
jantje 43a8c3868e fix for #4993 2016-05-29 16:00:16 +02:00
Arturo Guadalupi 8f0e0f2d5a Merge pull request #4990 from agdl/master
Added SerialPassthrough sketch to communication examples
2016-05-26 11:20:00 +02:00
agdl bd1135eb60 Added SerialPassthrough sketch to communication examples 2016-05-26 11:14:09 +02:00
Martino Facchin f0e5c90d43 Fix typo in changelog
Correct clickable link for boards manager is `http://boardsmanager/category#filter`
2016-05-25 09:28:41 +02:00
Cristian Maglie 3a604aefa8 Update revision log 2016-05-18 19:16:14 +02:00
Martino Facchin a73c18c1f4 Move Caterina_BL related defines into generic USBCore.h
In an excess of confidence, these defines were added to Leonardo's variant.h
3rd party boards sometimes avoid inheriting this variant but they still define USBCON, thus breaking the build
2016-05-18 14:23:40 +02:00
Cristian Maglie e336eb44db Refined version check reg-exp 2016-05-13 14:11:20 +02:00
Martino Facchin 7e4144b3fa starting version 1.6.10 2016-05-11 16:42:34 +02:00
Brent Wilkins e8f9002e75 Fixing issue #4940 (typo) 2016-05-10 08:33:12 -06:00
Cristian Maglie 3434cf6b09 Merge branch 'master' of github.com:arduino/Arduino 2016-05-10 10:36:07 +02:00
Cristian Maglie a0aa3e6a04 Updated translations 2016-05-10 10:35:55 +02:00
Martino Facchin 1f7141bc28 Merge branch 'master' of github.com:arduino/Arduino 2016-05-10 10:29:31 +02:00
Cristian Maglie 4117c1344a update rev log 2016-05-10 10:23:08 +02:00
Martino Facchin 388592e416 update SAM core to 1.6.8 2016-05-10 10:18:36 +02:00
Martino Facchin 271a1e4fbc update AVR core to 1.6.11 2016-05-10 10:18:15 +02:00
Martino Facchin 8807a0d1cd add support for remote upload on Yun shield 2016-05-10 10:13:51 +02:00
Martino Facchin ab921518fc Update Bridge 1.6.2 sha 2016-05-09 17:39:22 +02:00
Martino Facchin 86151fa1b9 include Bridge version 1.6.2 2016-05-09 17:20:03 +02:00
Cristian Maglie 2ed8822486 Fix wrong filename ooops 2016-05-06 16:59:21 +02:00
Cristian Maglie 1295f6cf57 Updating to arduino-builder 1.3.18 2016-05-06 15:47:17 +02:00
Cristian Maglie 6331b20868 Fixed wrong shasums 2016-05-06 11:35:47 +02:00
Cristian Maglie 98665df522 Updating to arduino-builder 1.3.17 2016-05-05 21:32:40 +02:00
Cristian Maglie 6f5c0b9a16 update revision log 2016-04-28 15:39:07 +02:00
Cristian Maglie 7cd88df271 sam: added {upload.verify} option in platform.txt 2016-04-28 15:36:56 +02:00
Cristian Maglie bca77163fb Merge branch 'upload-without-verify' of https://github.com/gh-megabit/Arduino 2016-04-28 15:09:27 +02:00
Cristian Maglie 66c9303bf0 Merge branch 'sam-recipe_ar_pattern-backwards-compatibility' of https://github.com/sandeepmistry/Arduino 2016-04-26 17:30:45 +02:00
Cristian Maglie 9492d5ee05 Removed extra whitespaces in WString.h 2016-04-20 20:30:24 +02:00
Cristian Maglie 1c76ee9d7c Added string iterator in sam core.
See #2179
2016-04-20 17:07:54 +02:00
Christopher Andrews 500a3fdbe7 Removed C++11 dependency for `begin()` and `end()`
As I was not able to base the return types of `begin()` & `end()` off the c_str() function, I have changed the source so the features can be used by C++98 code, while still allowing ranged loops in C++11.
2016-04-20 16:07:52 +02:00
Christopher Andrews 8e385bfbaf Updated String library to use C++11 iterators.
This will allow using the String library in a ranged for loop:

```C++
String s = "Hi, this is a test";

for( char c : s )
  Serial.print( c );
```
2016-04-20 16:07:52 +02:00
gh-megabit 4b64ef74ba Implement Do-Not-Verify-After-Upload preference for Serial Uploads 2016-04-15 21:15:34 +01:00
Martino Facchin 2ddbf01334 Do not drop serial ports with underscore in the name
solves #4857
2016-04-15 10:01:47 +02:00
Martino Facchin 93578cef42 Fix ssh authentication on newer ssh clients
For Console monitor on network ports
2016-04-15 10:00:41 +02:00
Sandeep Mistry 817d700a75 Subtract one from USB_EP_SIZE in USB_SendSpace
This avoids dealing with ZLP’s in USB_Send, because the max packet size
will be EP size - 1.
2016-04-14 10:06:47 -04:00
Sandeep Mistry c99ab12446 Add "runtime." prefix to "build_properties_custom.*" preferences 2016-04-13 09:03:03 -04:00
Sandeep Mistry 9c741885e0 Revert "Do not save build_properties_custom.* preferences to disk"
This reverts commit f47165db64.
2016-04-13 08:58:35 -04:00
Sandeep Mistry f47165db64 Do not save build_properties_custom.* preferences to disk 2016-04-12 10:15:01 -04:00
Cristian Maglie 2b18d1fba0 Merge remote-tracking branch 'arduino/master' 2016-04-08 20:17:26 +02:00
Cristian Maglie 63fc618b3d Update builder, avr-gcc and avrdude for ARM.
arduino-builder upgraded to 1.3.15
avr-gcc and avrdude have been rebuild with dependency on glibc <=2.13
2016-04-08 19:46:40 +02:00
Cristian Maglie f162a65a45 libastylej_arm.so: removed dependency from GLIBCXX_3.4.20
See https://github.com/arduino/Arduino/pull/4517#issuecomment-183128292
2016-04-08 18:55:00 +02:00
Cristian Maglie 95f5b52420 Added flag to allow ignoring signature check on package_index.json 2016-04-08 18:55:00 +02:00
Cristian Maglie 48cf016195 Added ARM build for ArduinoBot 2016-04-08 18:55:00 +02:00
Cristian Maglie e4176bfbdf Use LIBLISTSERIAL-VERSION property in build.xml 2016-04-08 18:54:57 +02:00
NicoHood e4ade5963b Added ARM architecture to build.xml 2016-04-08 18:45:39 +02:00