Cristian Maglie
ffddfc81f6
Merge branch 'cast' of github.com:Lauszus/Arduino into Lauszus-cast
...
Conflicts:
hardware/arduino/avr/cores/arduino/Print.cpp
2013-12-31 20:11:08 +01:00
Matthijs Kooijman
98777e816f
Use PGM_P instead of prog_char
...
On later versions of avr-libc, prog_char is deprecated. In 0acebeeff4
the one occurence of prog_char was replaced by "char PROGMEM", which is
not entirely correct (PROGMEM is supposed to be an attribute on a
variable, not on a type, even though this is how things work in older
libc versions). However, in 1130fede3a
a few new occurences of
prog_char are introduced, which break compilation on newer libc versions
again.
This commit changes all these pointer types to use the PGM_P macro from
<avr/pgmspace.h>. This macro is just "const char *" in newer libc
versions and "const prog_char *" in older versions, so it should always
work.
References #795
2013-12-31 20:01:40 +01:00
Cristian Maglie
0b72c88b42
Merge pull request #1762 from matthijskooijman/ide-1.5.x-write-char
...
Support both char* and uint8* in Stream and Print
2013-12-30 10:58:03 -08:00
Cristian Maglie
825d8c8455
sam: Optimized delayMicroseconds() (Rob Tillaart)
...
See #1121
2013-12-30 12:17:50 +01:00
Kristian Lauszus
5d361f5f47
Use reinterpret_cast to cast __FlashStringHelper to const char*
2013-12-27 20:01:03 +01:00
Matthijs Kooijman
2ea12d0220
Remove unneeded casts in Print::write(const String&)
...
Now that Print::write(const char*) is also available, these casts are no
longer needed.
2013-12-24 13:22:43 +01:00
Matthijs Kooijman
f304abe35f
Add uint8_t* versions of methods in Stream
...
The new functions just call their char* equivalents, but this allows
reading bytes into a buffer of uint8_t as well as chars.
2013-12-24 13:22:42 +01:00
Matthijs Kooijman
250386802f
Add Print::write(const char *, size_t)
...
The new function just calls Print::write(const uint8_t *, size_t), but
this allows writing out a buffer of chars (without having to learn about
casts).
2013-12-24 13:22:42 +01:00
Cristian Maglie
660c7d86fd
Optimized Print::print(String&) (part 2)
2013-12-23 12:04:15 +01:00
Federico Fissore
88a2ca18fd
Print.print optimization. Closes #1760
2013-12-23 11:50:39 +01:00
Cristian Maglie
b530742603
[sam] Fixed regression in analogRead() (fails to read multiple channels) (Mark Tillotson)
...
See #1740 #1634
http://forum.arduino.cc/index.php?topic=203322.msg1509907#msg1509907
2013-12-18 15:46:42 +01:00
Cristian Maglie
a1c4809105
[sam] Fixed regression in analogRead() (fails to read multiple channels)
...
Fixes #1740
2013-12-16 11:07:45 +01:00
Cristian Maglie
2e7b645571
[sam] Fixed wrap-around bug in delay() (Mark Tillotson)
...
Fixes #1736
2013-12-14 00:33:57 +01:00
Cristian Maglie
e2b15c852b
Changed pins definition in variants from constants to #defines.
2013-12-13 15:13:18 +01:00
Cristian Maglie
c5880c2c1b
Merge branch 'pins-define' into ide-1.5.x
2013-12-13 15:09:40 +01:00
Cristian Maglie
7fcba37acf
Changed pins definition in variants from constants to #defines.
2013-12-13 14:37:26 +01:00
Cristian Maglie
f9bbcab1a3
Removed redefinitions of SERIAL_* in Yun variant
2013-12-13 14:22:46 +01:00
Matthijs Kooijman
76645b957d
In boards.txt, rename atmega328diecimila to diecimila
...
This board has a "cpu" submenu to select either atmega328 or atmega168,
so it does not make sense to put atmega328 in the main board name.
2013-12-08 18:16:31 +01:00
Cristian Maglie
43f9f15358
Upped version to 1.5.5
2013-11-28 10:53:50 +01:00
ntruchsess
937bce1a0b
add localPort to EthernetClient, simplify operator==
2013-11-27 10:40:57 +01:00
ntruchsess
ca37de4ba4
add operator==, remoteIP and remotePort to EthernetClient
2013-11-26 00:12:44 +01:00
Cristian Maglie
d5c828736b
Revert "SPI library to new format"
2013-11-21 15:05:36 +01:00
Cristian Maglie
ff24874117
Revert "EEPROM library to the new format"
...
This reverts commits:
3223d4fdca
77f8dd63ab
2013-11-21 11:22:44 +01:00
Cristian Maglie
71bb7f7ae3
Fixed vid/pid definition for arduino_due_x_dbg in boards.txt. (Luca Baldini)
...
http://forum.arduino.cc/index.php?topic=197003
2013-11-15 14:01:36 +01:00
Cristian Maglie
7f17170678
Revert "SoftwareSerial library to the new format"
...
This reverts commit 38c3bbbd3c
.
2013-11-15 12:54:59 +01:00
Cristian Maglie
9a9652d506
Revert "Wire library to the 1.5 format"
...
This reverts commit a31857688b
.
2013-11-15 12:54:59 +01:00
Cristian Maglie
41697f02b2
Removed redundant LED_BUILTIN define in Yun variant.
2013-11-12 14:31:51 +01:00
Cristian Maglie
3ba9480972
Merge pull request #1634 from cmaglie/adc-fix
...
Improved ADC speed on Arduino Due
2013-11-12 00:57:28 -08:00
Cristian Maglie
edfa75f979
Merge branch 'master' into serial-variant
2013-11-11 14:01:09 +01:00
Cristian Maglie
e30418072d
Fix SERIAL_* metadata in Arduino Ethernet variant
2013-11-11 13:54:50 +01:00
Cristian Maglie
56572fa0de
Added SERIAL metadata into variant files.
2013-11-11 13:41:04 +01:00
Cristian Maglie
78abc567d1
Merge branch 'master' into serial-variant
2013-11-11 13:03:21 +01:00
Cristian Maglie
e7c24c66a9
Added SERIAL metadata into variant files.
2013-11-11 11:39:37 +01:00
Kristian Lauszus
42a0096682
Added VID and PID for older Arduino Unos
2013-11-11 02:41:44 +01:00
Cristian Maglie
8e3da56624
Added LED_BUILTIN definition to Arduino Due
2013-11-03 18:29:34 +01:00
Cristian Maglie
3607c0b2bd
Merge branch 'master' into ide-1.5.x
2013-11-03 18:18:09 +01:00
Cristian Maglie
9b519f2fbc
Changed LED_BUILTIN to a macro to better support boards that do not have a built-in LED.
...
Fixes #758
2013-11-03 18:10:22 +01:00
Cristian Maglie
350eb86dca
Added LED_BUILTIN constant to Leonardo board
2013-11-03 18:07:01 +01:00
Cristian Maglie
cdf9db82a9
Merge branch 'master' into ide-1.5.x
2013-11-03 14:00:42 +01:00
Cristian Maglie
537388337d
Added Arduino Ethernet variant.
...
Fixes #925
2013-11-03 13:52:08 +01:00
Cristian Maglie
8f1e3fd703
Using NOT_AN_INTERRUPT defined constant
2013-10-31 12:44:24 +01:00
Cristian Maglie
fca3a87c71
Added digitalPinToInterrupt also to robot variants
2013-10-31 12:44:05 +01:00
Cristian Maglie
35d477297d
Added pinToInterrupt() variant macro (Paul Stoffregen)
2013-10-31 12:43:41 +01:00
Cristian Maglie
1fc54f5003
[sam] Improved analogRead speed.
...
See #1418
2013-10-21 12:38:37 +02:00
Fede85
034cb91737
Merge remote-tracking branch 'origin/ide-1.5.x' into ide-1.5.x
2013-10-14 17:19:48 +02:00
Federico Fissore
bef7b94ea7
merge
2013-10-14 12:42:42 +02:00
Fede85
02550de1e9
Merge remote-tracking branch 'origin/ide-1.5.x' into ide-1.5.x
2013-10-10 20:59:01 +02:00
Cristian Maglie
be58b435fb
Small fixes to avr/boards.txt:
...
- adjusted Mega board name
- moved pid/vid to the proper place
- defined default build.board prop (so the IDE stops warning about that)
See #1605
2013-10-09 17:00:40 +02:00
Cristian Maglie
058ee205ba
Merge branch 'mega-adk' of github.com:Lauszus/Arduino into Lauszus-mega-adk
2013-10-09 16:45:05 +02:00
Cristian Maglie
40dce96f11
Fixed adc_init() function.
...
See #1418
2013-10-09 15:54:47 +02:00