mirror of
https://github.com/RobTillaart/Arduino.git
synced 2024-10-03 18:09:02 -04:00
0.1.5 DEVNULL
This commit is contained in:
parent
955c94007d
commit
08e1246a9a
@ -1,3 +1,18 @@
|
|||||||
|
platforms:
|
||||||
|
rpipico:
|
||||||
|
board: rp2040:rp2040:rpipico
|
||||||
|
package: rp2040:rp2040
|
||||||
|
gcc:
|
||||||
|
features:
|
||||||
|
defines:
|
||||||
|
- ARDUINO_ARCH_RP2040
|
||||||
|
warnings:
|
||||||
|
flags:
|
||||||
|
|
||||||
|
packages:
|
||||||
|
rp2040:rp2040:
|
||||||
|
url: https://github.com/earlephilhower/arduino-pico/releases/download/global/package_rp2040_index.json
|
||||||
|
|
||||||
compile:
|
compile:
|
||||||
# Choosing to run compilation tests on 2 different Arduino platforms
|
# Choosing to run compilation tests on 2 different Arduino platforms
|
||||||
platforms:
|
platforms:
|
||||||
@ -7,5 +22,7 @@ compile:
|
|||||||
# - leonardo
|
# - leonardo
|
||||||
- m4
|
- m4
|
||||||
- esp32
|
- esp32
|
||||||
# - esp8266
|
- esp8266
|
||||||
# - mega2560
|
# - mega2560
|
||||||
|
- rpipico
|
||||||
|
|
||||||
|
34
libraries/DEVNULL/CHANGELOG.md
Normal file
34
libraries/DEVNULL/CHANGELOG.md
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
# Change Log DEVNULL
|
||||||
|
|
||||||
|
All notable changes to this project will be documented in this file.
|
||||||
|
|
||||||
|
The format is based on [Keep a Changelog](http://keepachangelog.com/)
|
||||||
|
and this project adheres to [Semantic Versioning](http://semver.org/).
|
||||||
|
|
||||||
|
|
||||||
|
## [0.1.5] - 2022-10-31
|
||||||
|
- add changelog.md
|
||||||
|
- add rp2040 to build-CI
|
||||||
|
|
||||||
|
|
||||||
|
## [0.1.4] - 2022-09-21
|
||||||
|
- split up .h in .cpp and .h
|
||||||
|
- add **lastByte()** to check last byte written.
|
||||||
|
|
||||||
|
## [0.1.3] - 2021-12-15
|
||||||
|
- update library.json, license, minor edits
|
||||||
|
|
||||||
|
## [0.1.2] - 2021-11-24
|
||||||
|
- update build-CI
|
||||||
|
- add badges
|
||||||
|
- sets the timeout for reading to 0. No need to wait longer with DEVNULL.
|
||||||
|
this improves the **find(...)** calls substantially.
|
||||||
|
- added **size_t write( const uint8_t \*buffer, size_t size)** for faster string processing.
|
||||||
|
|
||||||
|
## [0.1.1] - 2020-12-18
|
||||||
|
- add Arduino-CI.
|
||||||
|
|
||||||
|
|
||||||
|
## [0.1.0] - 2020-06-23
|
||||||
|
- initial version
|
||||||
|
|
@ -1,18 +1,12 @@
|
|||||||
//
|
//
|
||||||
// FILE: DEVNULL.cpp
|
// FILE: DEVNULL.cpp
|
||||||
// AUTHOR: Rob Tillaart
|
// AUTHOR: Rob Tillaart
|
||||||
// VERSION: 0.1.4
|
// VERSION: 0.1.5
|
||||||
// PURPOSE: Arduino library for a /dev/null stream - useful for testing
|
// PURPOSE: Arduino library for a /dev/null stream - useful for testing
|
||||||
// URL: https://github.com/RobTillaart/DEVNULL
|
// URL: https://github.com/RobTillaart/DEVNULL
|
||||||
//
|
//
|
||||||
// HISTORY:
|
// HISTORY: see changelog.md
|
||||||
// 0.1.0 2020-06-23 initial version.
|
|
||||||
// 0.1.1 2020-12-18 add Arduino-CI.
|
|
||||||
// 0.1.2 2021-11-24 update build-CI, badges, etc.
|
|
||||||
// added write(data, length) + _timeOut.
|
|
||||||
// 0.1.3 2021-12-15 update library.json, license, minor edits
|
|
||||||
// 0.1.4 2022-09-21 split up .h in .cpp and .h
|
|
||||||
// add last() to check last byte written to.
|
|
||||||
|
|
||||||
|
|
||||||
#include "DEVNULL.h"
|
#include "DEVNULL.h"
|
||||||
@ -23,11 +17,26 @@ DEVNULL::DEVNULL()
|
|||||||
_bottomLessPit = -1; // nothing in the pit
|
_bottomLessPit = -1; // nothing in the pit
|
||||||
}
|
}
|
||||||
|
|
||||||
int DEVNULL::available() { return 0; };
|
int DEVNULL::available()
|
||||||
int DEVNULL::peek() { return EOF; };
|
{
|
||||||
int DEVNULL::read() { return EOF; };
|
return 0;
|
||||||
|
};
|
||||||
|
|
||||||
|
int DEVNULL::peek()
|
||||||
|
{
|
||||||
|
return EOF;
|
||||||
|
};
|
||||||
|
|
||||||
|
int DEVNULL::read()
|
||||||
|
{
|
||||||
|
return EOF;
|
||||||
|
};
|
||||||
|
|
||||||
// placeholder to keep CI happy
|
// placeholder to keep CI happy
|
||||||
void DEVNULL::flush() { return; };
|
void DEVNULL::flush()
|
||||||
|
{
|
||||||
|
return;
|
||||||
|
};
|
||||||
|
|
||||||
size_t DEVNULL::write(const uint8_t data)
|
size_t DEVNULL::write(const uint8_t data)
|
||||||
{
|
{
|
||||||
|
@ -2,14 +2,14 @@
|
|||||||
//
|
//
|
||||||
// FILE: DEVNULL.h
|
// FILE: DEVNULL.h
|
||||||
// AUTHOR: Rob Tillaart
|
// AUTHOR: Rob Tillaart
|
||||||
// VERSION: 0.1.4
|
// VERSION: 0.1.5
|
||||||
// PURPOSE: Arduino library for a /dev/null stream - useful for testing
|
// PURPOSE: Arduino library for a /dev/null stream - useful for testing
|
||||||
// URL: https://github.com/RobTillaart/DEVNULL
|
// URL: https://github.com/RobTillaart/DEVNULL
|
||||||
|
|
||||||
|
|
||||||
#include "Arduino.h"
|
#include "Arduino.h"
|
||||||
|
|
||||||
#define DEVNULL_LIB_VERSION (F("0.1.4"))
|
#define DEVNULL_LIB_VERSION (F("0.1.5"))
|
||||||
|
|
||||||
|
|
||||||
class DEVNULL : public Stream
|
class DEVNULL : public Stream
|
||||||
|
@ -30,19 +30,6 @@ with only a return 0; (or at least **print(Type)** as the **println(T)** would o
|
|||||||
call once extra for the "\n".
|
call once extra for the "\n".
|
||||||
|
|
||||||
|
|
||||||
## Versions
|
|
||||||
|
|
||||||
#### 0.1.2
|
|
||||||
|
|
||||||
- sets the timeout for reading to 0. No need to wait longer with DEVNULL.
|
|
||||||
this improves the **find(...)** calls substantially.
|
|
||||||
- added **size_t write( const uint8_t \*buffer, size_t size)** for faster string processing.
|
|
||||||
|
|
||||||
#### 0.1.4
|
|
||||||
|
|
||||||
- add **lastByte()** to check last byte written.
|
|
||||||
- split of .cpp
|
|
||||||
|
|
||||||
## Interface
|
## Interface
|
||||||
|
|
||||||
- **DEVNULL()** constructor, sets the timeout to zero.
|
- **DEVNULL()** constructor, sets the timeout to zero.
|
||||||
|
@ -15,7 +15,7 @@
|
|||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/RobTillaart/DEVNULL.git"
|
"url": "https://github.com/RobTillaart/DEVNULL.git"
|
||||||
},
|
},
|
||||||
"version": "0.1.4",
|
"version": "0.1.5",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"frameworks": "arduino",
|
"frameworks": "arduino",
|
||||||
"platforms": "*",
|
"platforms": "*",
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
name=DEVNULL
|
name=DEVNULL
|
||||||
version=0.1.4
|
version=0.1.5
|
||||||
author=Rob Tillaart <rob.tillaart@gmail.com>
|
author=Rob Tillaart <rob.tillaart@gmail.com>
|
||||||
maintainer=Rob Tillaart <rob.tillaart@gmail.com>
|
maintainer=Rob Tillaart <rob.tillaart@gmail.com>
|
||||||
sentence=Arduino library for a /dev/null stream
|
sentence=Arduino library for a /dev/null stream
|
||||||
|
Loading…
Reference in New Issue
Block a user