Skip to content

Commit 38c3bbb

Browse files
committed
SoftwareSerial library to the new format
1 parent 2919e34 commit 38c3bbb

File tree

7 files changed

+12
-1
lines changed

7 files changed

+12
-1
lines changed

hardware/arduino/avr/libraries/SoftwareSerial/SoftwareSerial.cpp renamed to libraries/SoftwareSerial/arch/avr/SoftwareSerial.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ The latest version of this library can always be found at
4141
#include <avr/interrupt.h>
4242
#include <avr/pgmspace.h>
4343
#include <Arduino.h>
44-
#include <SoftwareSerial.h>
44+
#include <SoftwareSerial_Class.h>
4545
//
4646
// Lookup table
4747
//
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
name=SoftwareSerial
2+
author=Mikal Hart
3+
email=info@arduino.cc
4+
sentence=With this library you can create a software Serial interface on two Arduino pins
5+
paragraph=you can choose two Arduino pins and use them as RX and TX channels of a Serial interface.</br>This library emulate the in software the behaviour of a serial interface.</br>For the RX pis in mandatory to use a pin with the PinChange interrupt capability.
6+
url=http://arduino.cc/en/Reference/SD
7+
architectures=avr
8+
version=1.0
9+
dependencies= none
10+
core-dependencies=arduino (>=1.5.0)
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
#include <SoftwareSerial_Class.h>

0 commit comments

Comments
 (0)