diff options
author | William Grzybowski <wg@FreeBSD.org> | 2013-06-17 14:47:18 +0000 |
---|---|---|
committer | William Grzybowski <wg@FreeBSD.org> | 2013-06-17 14:47:18 +0000 |
commit | b274dec91b8d15cff76449fa3a6d7e17f97a64e8 (patch) | |
tree | 75ac2fa92bb9cf32a618638e37d701e49b89ded6 /devel/arduino/files | |
parent | Update to -dev19. (diff) |
devel/arduino: update to 1.0.5
- Update to 1.0.5
- Delete patch integrated upstream
Changes: http://arduino.cc/en/Main/ReleaseNotes
PR: ports/179628
Submitted by: Craig Leres <leres@ee.lbl.gov> (maintainer)
Approved by: culot / jpaetzel (mentors, implicit)
Notes
Notes:
svn path=/head/; revision=321119
Diffstat (limited to 'devel/arduino/files')
-rw-r--r-- | devel/arduino/files/patch-hardware-arduino-cores-arduino-HardwareSerial.cpp | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/devel/arduino/files/patch-hardware-arduino-cores-arduino-HardwareSerial.cpp b/devel/arduino/files/patch-hardware-arduino-cores-arduino-HardwareSerial.cpp deleted file mode 100644 index 7b9549828433..000000000000 --- a/devel/arduino/files/patch-hardware-arduino-cores-arduino-HardwareSerial.cpp +++ /dev/null @@ -1,29 +0,0 @@ ---- hardware/arduino/cores/arduino/HardwareSerial.cpp.orig 2012-07-28 21:20:49.000000000 -0700 -+++ hardware/arduino/cores/arduino/HardwareSerial.cpp 2012-07-28 21:24:52.000000000 -0700 -@@ -129,8 +129,6 @@ - unsigned char c = UDR1; - store_char(c, &rx_buffer1); - } --#elif defined(SIG_USART1_RECV) -- #error SIG_USART1_RECV - #endif - - #if defined(USART2_RX_vect) && defined(UDR2) -@@ -142,8 +140,6 @@ - unsigned char c = UDR2; - store_char(c, &rx_buffer2); - } --#elif defined(SIG_USART2_RECV) -- #error SIG_USART2_RECV - #endif - - #if defined(USART3_RX_vect) && defined(UDR3) -@@ -155,8 +151,6 @@ - unsigned char c = UDR3; - store_char(c, &rx_buffer3); - } --#elif defined(SIG_USART3_RECV) -- #error SIG_USART3_RECV - #endif - - void serialEventRun(void) |