0.2.2 ADC081S

This commit is contained in:
Rob Tillaart 2024-06-02 19:32:31 +02:00
parent ac063398a0
commit 501d5f0566
6 changed files with 16 additions and 9 deletions

View File

@ -1,7 +1,7 @@
// //
// FILE: ADC081S.cpp // FILE: ADC081S.cpp
// AUTHOR: Rob Tillaart // AUTHOR: Rob Tillaart
// VERSION: 0.2.1 // VERSION: 0.2.2
// DATE: 2024-01-10 // DATE: 2024-01-10
// PURPOSE: Arduino library for ADC081S 8 bit ADC (SPI) // PURPOSE: Arduino library for ADC081S 8 bit ADC (SPI)
// URL: https://github.com/RobTillaart/ADC081S // URL: https://github.com/RobTillaart/ADC081S
@ -150,7 +150,7 @@ void ADC081S::shutDown()
if (_hwSPI) // hardware SPI if (_hwSPI) // hardware SPI
{ {
_mySPI->beginTransaction(_spi_settings); _mySPI->beginTransaction(_spi_settings);
_mySPI->transfer(0); // 8 pulses _mySPI->transfer(0); // 8 pulses
_mySPI->endTransaction(); _mySPI->endTransaction();
} }
else // Software SPI else // Software SPI

View File

@ -2,7 +2,7 @@
// //
// FILE: ADC081S.h // FILE: ADC081S.h
// AUTHOR: Rob Tillaart // AUTHOR: Rob Tillaart
// VERSION: 0.2.1 // VERSION: 0.2.2
// DATE: 2024-01-10 // DATE: 2024-01-10
// PURPOSE: Arduino library for ADC081S 8 bit ADC (SPI) // PURPOSE: Arduino library for ADC081S 8 bit ADC (SPI)
// URL: https://github.com/RobTillaart/ADC081S // URL: https://github.com/RobTillaart/ADC081S
@ -13,11 +13,14 @@
#include "SPI.h" #include "SPI.h"
#define ADC081S_LIB_VERSION (F("0.2.1")) #define ADC081S_LIB_VERSION (F("0.2.2"))
#ifndef __SPI_CLASS__ #ifndef __SPI_CLASS__
#if defined(ARDUINO_ARCH_RP2040) // MBED must be tested before RP2040
#if defined(ARDUINO_ARCH_MBED)
#define __SPI_CLASS__ SPIClass
#elif defined(ARDUINO_ARCH_RP2040)
#define __SPI_CLASS__ SPIClassRP2040 #define __SPI_CLASS__ SPIClassRP2040
#else #else
#define __SPI_CLASS__ SPIClass #define __SPI_CLASS__ SPIClass

View File

@ -6,9 +6,13 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/). and this project adheres to [Semantic Versioning](http://semver.org/).
## [0.2.2] - 2024-06-02
- add support for ARDUINO_ARCH_MBED
- minor edits
## [0.2.1] - 2024-03-03 ## [0.2.1] - 2024-03-03
- Fix #6, add example for SPI1 - Fix #6, add example for SPI1
- update Github/actions to v4 (build-CI) - update GitHub/actions to v4 (build-CI)
- minor edits - minor edits
## [0.2.0] - 2024-01-19 ## [0.2.0] - 2024-01-19

View File

@ -16,7 +16,7 @@ Arduino library for ADC081S 8 bit, ADC101S 10 bit and ADC121S 12 bit ADC (SPI) s
## Description ## Description
Experimental. **Experimental**
This library provides three classes, ADC081S, ADC101S and ADC121S. This library provides three classes, ADC081S, ADC101S and ADC121S.
These are respectively an 8 bit, a 10 bit and a 12 bit ADC convertor. These are respectively an 8 bit, a 10 bit and a 12 bit ADC convertor.

View File

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

View File

@ -1,5 +1,5 @@
name=ADC081S name=ADC081S
version=0.2.1 version=0.2.2
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 ADC081S 8 bit ADC (SPI). sentence=Arduino library for ADC081S 8 bit ADC (SPI).