-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f0ec815
commit 626cc96
Showing
4 changed files
with
23 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
/* | ||
SoftwareSerial.cpp - library for Arduino M0/M0 pro | ||
MCCI_SoftSerial.cpp - library for Arduino M0/M0 pro | ||
Copyright (c) 2016 Arduino Srl. All rights reserved. | ||
Written by Chiara Ruggeri ([email protected]) | ||
Portions copyright (c) 2018 MCCI Corporation. All rights reserved. | ||
Portions copyright (c) 2018, 2021, 2023 MCCI Corporation. All rights reserved. | ||
Written by Terry Moore ([email protected]) | ||
This library is free software; you can redistribute it and/or | ||
|
@@ -24,7 +24,7 @@ | |
|
||
|
||
#include <Arduino.h> | ||
#include <SoftwareSerial.h> | ||
#include <MCCI_SoftSerial.h> | ||
#include <variant.h> | ||
#include <WInterrupts.h> | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
/* | ||
SoftwareSerial.cpp - library for Arduino M0/M0 pro | ||
MCCI_SoftSerial.cpp - library for Arduino M0/M0 pro | ||
Copyright (c) 2016 Arduino Srl. All rights reserved. | ||
Written by Chiara Ruggeri ([email protected]) | ||
Portions copyright (c) 2018 MCCI Corporation. All rights reserved. | ||
Portions copyright (c) 2018, 2021, 2023 MCCI Corporation. All rights reserved. | ||
Written by Terry Moore ([email protected]) | ||
This library is free software; you can redistribute it and/or | ||
|
@@ -22,8 +22,8 @@ | |
Enjoy! | ||
*/ | ||
|
||
#ifndef SoftwareSerial_h | ||
#define SoftwareSerial_h | ||
#ifndef _MCCI_SoftSerial_h_ | ||
#define _MCCI_SoftSerial_h_ | ||
|
||
#include <inttypes.h> | ||
#include <Stream.h> | ||
|
@@ -110,5 +110,5 @@ class SoftwareSerial : public Stream | |
#undef abs | ||
#undef round | ||
|
||
#endif | ||
#endif /* _MCCI_SoftSerial_h_ */ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
name=SofwareSerial (MCCI version) | ||
version=2.0.0 | ||
name=MCCI_SoftSerial | ||
version=3.0.0 | ||
author=Chiara Ruggeri ([email protected]) | ||
maintainer=Terry Moore <[email protected]> | ||
sentence=Software UART for Arduino | ||
paragraph=This library allows any pair of pins to be used as a UART implemented by software. The MCCI version incorporates bug fixes and makes it more compatible with the UART and USB serial classes. | ||
category=Communication | ||
url=https://github.com/mcci-catena/SoftwareSerial | ||
url=https://github.com/mcci-catena/MCCI_SoftSerial | ||
architectures=* |