Commit Graph

708 Commits

Author SHA1 Message Date
Brent Wilkins 614a736dab Fixing issue #4940 (typo) 2016-05-10 08:33:12 -06:00
Martino Facchin b70b05d293 update AVR core to 1.6.11 2016-05-10 10:18:15 +02:00
Martino Facchin 8a4038878d add support for remote upload on Yun shield 2016-05-10 10:13:51 +02:00
Cristian Maglie f1e8edd67f Merge branch 'upload-without-verify' of https://github.com/gh-megabit/Arduino 2016-04-28 15:09:27 +02:00
Cristian Maglie 98e2783b88 Removed extra whitespaces in WString.h 2016-04-20 20:30:24 +02:00
Christopher Andrews 4839440364 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 63e6354f70 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 eefbe608d9 Implement Do-Not-Verify-After-Upload preference for Serial Uploads 2016-04-15 21:15:34 +01:00
Martino Facchin d1e46f9070 [AVR] Discover newer bootloader at runtime
Replaces #4280, only checks for the bootloader once

Tested with Hoodloader2, should work with every LUFA-derived bootloader released after 2014 (.apitable_signatures section must be placed at end of the flash)

BootloaderAPITable.S :

.global BootloaderAPI_Signatures
BootloaderAPI_Signatures:

    .long BOOT_START_ADDR ; Start address of the bootloader
    .word 0xDF00 ; Signature for the CDC class bootloader
    .word 0xDCFB ; Signature for a LUFA class bootloader

makefile:

BOOT_API_LD_FLAGS    += $(call BOOT_SECTION_LD_FLAG, .apitable_signatures,  BootloaderAPI_Signatures,  8)
2016-04-06 17:41:06 +02:00
Bradley Luke Totaro f84feb46e6 Update SoftwareSerial.cpp 2016-04-05 15:10:46 -04:00
Sandeep Mistry 5047579e12 Add comment for archive_file_path 2016-04-04 13:27:47 -04:00
Sandeep Mistry 1c76af5550 Merge pull request #4737 from per1234/recipe_ar_pattern-backwards-compatibility
AVR recipe.ar.pattern backwards compatibility
2016-04-04 13:26:05 -04:00
Sandeep Mistry 24bf82db61 Merge pull request #4716 from asukiaaa/master
Corrected comments of rx and tx in a SoftwareSerial example.
2016-04-04 10:00:47 -04:00
Arturo Guadalupi 0d19902ec3 Merge pull request #4669 from sandeepmistry/software-serial-peek-cast
Add missing cast to SoftwareSerial::peek() when returning buffered value
2016-03-31 15:03:55 +02:00
per1234 1c998ef1f8 AVR recipe.ar.pattern backwards compatibility
Define archive_file_path in Arduino AVR Boards platform.txt to provide
backwards compatibility with IDE versions previous to 1.6.6. The
archive_file_path value set in platform.txt is overridden in IDE 1.6.6+.
This produces avr-ar commands identical to the previous behavior.
2016-03-22 03:31:10 -07:00
asukiaaa c80a30e8b6 Corrected comments of rx and tx for SoftwareSerial example. 2016-03-19 16:21:07 +09:00
per1234 ddc7059bb0 Clean up comments in platform.txt
- Remove comment in Arduino AVR Boards platform.txt about -w flag. This
is no longer relevant since the compiler warning level is now set by the
user.
- Fix typos
2016-03-15 15:42:16 -07:00
Sandeep Mistry 242e405f60 Make SoftwareSerial receive buffer a uint8_t array 2016-03-10 10:23:50 -05:00
Sandeep Mistry 3cebac8ddf Add missing cast to SoftwareSerial::peek() when returning buffered value 2016-03-10 10:23:50 -05:00
Paolo Paolucci 36ab53b80d Fix Wire register
Move TWBR register from Wire.cpp to twi.c file.
2016-03-09 15:47:55 -05:00
Sandeep Mistry a11ba6108a Move AVR Wire library utility folder under source 2016-03-04 17:11:56 -05:00
Cristian Maglie 6a15a3c556 AVR core version to 1.6.10 2016-03-04 14:56:09 +01:00
Sandeep Mistry bf730be92d Merge pull request #4646 from arduino/SimonePDA-patch-3
Update library.properties
2016-03-03 15:19:26 -05:00
Sandeep Mistry ccf08472c7 Merge pull request #4645 from arduino/SimonePDA-patch-2
Update library.properties
2016-03-03 15:19:06 -05:00
SimonePDA a3ea35834f Update library.properties 2016-03-03 19:57:04 +01:00
SimonePDA 9339d7254c Update library.properties 2016-03-03 19:34:02 +01:00
SimonePDA d7f6536f3a Update library.properties 2016-03-03 19:26:22 +01:00
SimonePDA ae829f6ac5 Update library.properties 2016-03-03 19:13:25 +01:00
tico-tico 11db98c425 huh? i guess it's just 'modulo'. let's save even more 2016-03-03 10:53:25 -05:00
Alice Pintus 4ea9207559 add src folder when missing 2016-03-02 14:45:57 +01:00
Alice Pintus d5a10e8ca8 moved .h file in src folder 2016-03-02 10:49:39 +01:00
Alice Pintus 2b1d8d6112 update sentences 2016-03-01 16:09:50 +01:00
Paulo Costa feee822caa Boilerplate compression on ISR declaration
The current code is very verbose and a painful to maintain (Change ISR implementation in 20 different places? No Thanks!).

(This was originally part of #4519, but we all agreeded it deserved it's own PR)
2016-02-03 22:43:57 -02:00
Brent Wilkins bc6d0e7908 Fixed typo 2016-02-01 12:52:29 -07:00
Brent Wilkins 61d915c5a6 Update Wire.cpp
Removed implicit conversions from unsigned, to signed, back to unsigned.
2016-01-18 13:12:11 -07:00
vbextreme cc90c73ee9 fix delay/yield on avr, if function called by yield takes more a millisecond the delay fails 2015-12-27 14:50:56 +01:00
Cristian Maglie 8ebb912d30 Merge NicoHood's fix for USB_SendControl with len>64
Fix #4325
2015-12-23 15:35:08 +01:00
NicoHood eb18cae855 Added >64 byte USB_RecvControl() support 2015-12-23 15:31:55 +01:00
NicoHood d596f45771 Added Long USB RecvControl call for >64 bytes 2015-12-19 01:53:24 +01:00
NicoHood 8eea4fc81d Added HID_REPORT_TYPE definitions 2015-12-10 10:30:04 +01:00
Cristian Maglie cecba6cde7 Merge branch 'remove-wire-keywords' of https://github.com/per1234/Arduino 2015-11-30 10:20:10 +01:00
per1234 7ace92deb3 Remove unused keywords from Wire libraries keywords.txt
These functions have been replaced by read() and write() since Arduino
1.0.
2015-11-28 17:56:21 -08:00
per1234 27ccdfb19b eeprom_clear example: Set pinMode of LED pin 2015-11-24 16:23:16 -08:00
Cristian Maglie c411f282f9 Merge branch 'led_fix' of https://github.com/NicoHood/Arduino 2015-11-24 16:44:51 +01:00
Cristian Maglie d723985d79 Merge branch 'leonardo-usbserial' of https://github.com/cmaglie/Arduino 2015-11-24 16:34:27 +01:00
Sandeep Mistry af0e712b12 Cleanup some Stream compiler warnings from #3337 2015-11-23 16:45:29 -05:00
Chris--A 699041da60 Make protected Stream::parseInt/Float overloads public.
Stream::parseInt & Stream::parseFloat previously had protected
overloads which allowed skipping a custom character. This commit
brings this feature to the public interface.

To keep the public API simpler, the single paramter overload remains
protected. However its functionality is available in the public
interface using the two parameter overload.
2015-11-23 15:46:24 -05:00
Chris--A 02909a5d39 This adds control of Stream::parseInt/float lookahead.
Its default is SKIP_ALL which reflects previous versions.
However SKIP_NONE, and SKIP_WHITESPACE can refine this behaviour.

A parameter used in the protected overloads of parseInt/Float has been
changed from `skipChar` to `ignore`.
2015-11-23 15:46:24 -05:00
Chris--A f536bf5ced This is a bug fix which prevents parseFloat from proceeding past
multiple decimals '.' in the stream. Only one can be accepted for
valid decimal numbers.
2015-11-23 15:46:24 -05:00
Chris--A ca8417e8bd This commit improves the parsing capability by allowing decimals only
prefixed by an '.' character. Previously the preceeding zero must be
present: '0.'
2015-11-23 15:46:23 -05:00