mirror of
https://github.com/RobTillaart/Arduino.git
synced 2024-10-03 18:09:02 -04:00
0.3.3 SHEX
This commit is contained in:
parent
f885785fe2
commit
7dec0c8737
@ -6,6 +6,10 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/)
|
||||
and this project adheres to [Semantic Versioning](http://semver.org/).
|
||||
|
||||
|
||||
## [0.3.3] - 2023-11-21
|
||||
- update readme.md
|
||||
|
||||
|
||||
## [0.3.2] - 2023-02-20
|
||||
- fix **flushASCII()**
|
||||
- fix LIB version number.
|
||||
@ -16,7 +20,6 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
|
||||
- update license 2023
|
||||
- minor edits
|
||||
|
||||
|
||||
## [0.3.1] - 2022-11-24
|
||||
- Add RP2040 support to build-CI.
|
||||
- Add CHANGELOG.md
|
||||
|
@ -2,8 +2,11 @@
|
||||
[![Arduino CI](https://github.com/RobTillaart/SHEX/workflows/Arduino%20CI/badge.svg)](https://github.com/marketplace/actions/arduino_ci)
|
||||
[![Arduino-lint](https://github.com/RobTillaart/SHEX/actions/workflows/arduino-lint.yml/badge.svg)](https://github.com/RobTillaart/SHEX/actions/workflows/arduino-lint.yml)
|
||||
[![JSON check](https://github.com/RobTillaart/SHEX/actions/workflows/jsoncheck.yml/badge.svg)](https://github.com/RobTillaart/SHEX/actions/workflows/jsoncheck.yml)
|
||||
[![GitHub issues](https://img.shields.io/github/issues/RobTillaart/SHEX.svg)](https://github.com/RobTillaart/SHEX/issues)
|
||||
|
||||
[![License: MIT](https://img.shields.io/badge/license-MIT-green.svg)](https://github.com/RobTillaart/SHEX/blob/master/LICENSE)
|
||||
[![GitHub release](https://img.shields.io/github/release/RobTillaart/SHEX.svg?maxAge=3600)](https://github.com/RobTillaart/SHEX/releases)
|
||||
[![PlatformIO Registry](https://badges.registry.platformio.org/packages/robtillaart/library/SHEX.svg)](https://registry.platformio.org/libraries/robtillaart/SHEX)
|
||||
|
||||
|
||||
# SHEX
|
||||
@ -137,7 +140,6 @@ See examples.
|
||||
|
||||
## Future
|
||||
|
||||
|
||||
#### Must
|
||||
|
||||
- documentation
|
||||
@ -172,3 +174,13 @@ See examples.
|
||||
and after how many lines the header should repeat
|
||||
**header(str, lines)** ?
|
||||
Can also be done by just calling Serial.print.
|
||||
|
||||
|
||||
## Support
|
||||
|
||||
If you appreciate my libraries, you can support the development and maintenance.
|
||||
Improve the quality of the libraries by providing issues and Pull Requests, or
|
||||
donate through PayPal or GitHub sponsors.
|
||||
|
||||
Thank you,
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
//
|
||||
// FILE: SHEX.cpp
|
||||
// AUTHOR: Rob Tillaart
|
||||
// VERSION: 0.3.2
|
||||
// VERSION: 0.3.3
|
||||
// PURPOSE: Arduino library to generate hex dump over Serial
|
||||
// DATE: 2020-05-24
|
||||
// URL: https://github.com/RobTillaart/SHEX
|
||||
|
@ -2,7 +2,7 @@
|
||||
//
|
||||
// FILE: SHEX.h
|
||||
// AUTHOR: Rob Tillaart
|
||||
// VERSION: 0.3.2
|
||||
// VERSION: 0.3.3
|
||||
// PURPOSE: Arduino library to generate hex dump over Serial
|
||||
// DATE: 2020-05-24
|
||||
// URL: https://github.com/RobTillaart/SHEX
|
||||
@ -12,7 +12,7 @@
|
||||
#include "Print.h"
|
||||
|
||||
|
||||
#define SHEX_LIB_VERSION (F("0.3.2"))
|
||||
#define SHEX_LIB_VERSION (F("0.3.3"))
|
||||
|
||||
|
||||
#if not defined(SHEX_DEFAULT_LENGTH)
|
||||
|
@ -15,9 +15,9 @@
|
||||
"type": "git",
|
||||
"url": "https://github.com/RobTillaart/SHEX.git"
|
||||
},
|
||||
"version": "0.3.2",
|
||||
"version": "0.3.3",
|
||||
"license": "MIT",
|
||||
"frameworks": "arduino",
|
||||
"frameworks": "*",
|
||||
"platforms": "*",
|
||||
"headers": "SHEX.h"
|
||||
}
|
||||
|
@ -1,5 +1,5 @@
|
||||
name=SHEX
|
||||
version=0.3.2
|
||||
version=0.3.3
|
||||
author=Rob Tillaart <rob.tillaart@gmail.com>
|
||||
maintainer=Rob Tillaart <rob.tillaart@gmail.com>
|
||||
sentence=Arduino library to generate hex dump over Serial
|
||||
|
Loading…
Reference in New Issue
Block a user