0.2.1 AD568X

This commit is contained in:
Rob Tillaart 2023-12-11 14:33:06 +01:00
parent af30360e5f
commit d996306760
5 changed files with 9 additions and 9 deletions

View File

@ -1,7 +1,7 @@
//
// FILE: AD568X.cpp
// AUTHOR: Rob Tillaart
// VERSION: 0.2.0
// VERSION: 0.2.1
// DATE: 2023-09-18
// PURPOSE: Arduino library for AD568X series Digital Analog Convertor.

View File

@ -2,7 +2,7 @@
//
// FILE: AD568X.h
// AUTHOR: Rob Tillaart
// VERSION: 0.2.0
// VERSION: 0.2.1
// DATE: 2023-09-18
// PURPOSE: Arduino library for AD568X series Digital Analog Convertor.
@ -10,7 +10,7 @@
#include "Arduino.h"
#include "SPI.h"
#define AD568X_LIB_VERSION (F("0.2.0"))
#define AD568X_LIB_VERSION (F("0.2.1"))
#if defined(ARDUINO_ARCH_RP2040)
@ -101,10 +101,6 @@ protected:
__SPI_CLASS__ * _mySPI;
SPISettings _spi_settings;
#if defined(ESP32)
bool _useHSPI = true;
#endif
};

View File

@ -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.2.1] - 2023-12-11
- minor edit
## [0.2.0] - 2023-11-26
- refactor constructor interface - breaking changes.
- minimize conditional code. -- create SPI_CLASS macro to solve it.

View File

@ -15,7 +15,7 @@
"type": "git",
"url": "https://github.com/RobTillaart/AD568X.git"
},
"version": "0.2.0",
"version": "0.2.1",
"license": "MIT",
"frameworks": "*",
"platforms": "*",

View File

@ -1,5 +1,5 @@
name=AD568X
version=0.2.0
version=0.2.1
author=Rob Tillaart <rob.tillaart@gmail.com>
maintainer=Rob Tillaart <rob.tillaart@gmail.com>
sentence=Arduino library for AD568X series Digital Analog Convertor.