0.2.2 ADC08XS

This commit is contained in:
Rob Tillaart 2024-06-02 19:33:04 +02:00
parent 501d5f0566
commit c30131f354
6 changed files with 16 additions and 10 deletions

View File

@ -1,9 +1,9 @@
// //
// FILE: ADC08XS.cpp // FILE: ADC08XS.cpp
// AUTHOR: Rob Tillaart // AUTHOR: Rob Tillaart
// VERSION: 0.2.1 // VERSION: 0.2.2
// DATE: 2024-01-13 // DATE: 2024-01-13
// PURPOSE: Arduino library for ADC082S, ADC084S, ADC102S, ADC104S, ADC122S, ADC124S, // PURPOSE: Arduino library for ADC082S, ADC084S, ADC102S, ADC104S, ADC122S, ADC124S,
// 8, 10, 12 bits, 2 or 4 channel ADC (SPI). // 8, 10, 12 bits, 2 or 4 channel ADC (SPI).
// URL: https://github.com/RobTillaart/ADC08XS // URL: https://github.com/RobTillaart/ADC08XS
@ -173,7 +173,7 @@ void ADC08XS::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,9 +2,9 @@
// //
// FILE: ADC08XS.h // FILE: ADC08XS.h
// AUTHOR: Rob Tillaart // AUTHOR: Rob Tillaart
// VERSION: 0.2.1 // VERSION: 0.2.2
// DATE: 2024-01-13 // DATE: 2024-01-13
// PURPOSE: Arduino library for ADC082S, ADC084S, ADC102S, ADC104S, ADC122S, ADC124S, // PURPOSE: Arduino library for ADC082S, ADC084S, ADC102S, ADC104S, ADC122S, ADC124S,
// 8, 10, 12 bits, 2 or 4 channel ADC (SPI). // 8, 10, 12 bits, 2 or 4 channel ADC (SPI).
// URL: https://github.com/RobTillaart/ADC08XS // URL: https://github.com/RobTillaart/ADC08XS
// //
@ -14,11 +14,14 @@
#include "SPI.h" #include "SPI.h"
#define ADC08XS_LIB_VERSION (F("0.2.1")) #define ADC08XS_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,6 +6,9 @@ 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
## [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)

View File

@ -16,7 +16,7 @@ Arduino library for ADC082S, ADC084S, ADC102S, ADC104S, ADC122S, ADC124S, 8, 10,
## Description ## Description
Experimental. **Experimental**
This library provides six classes, This library provides six classes,
- dual channel: ADC082S, ADC102S and ADC122S. - dual channel: ADC082S, ADC102S and ADC122S.

View File

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

View File

@ -1,5 +1,5 @@
name=ADC08XS name=ADC08XS
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 ADC08XS 8, 10, 12 bit ADC (SPI), 2 or 4 channel. sentence=Arduino library for ADC08XS 8, 10, 12 bit ADC (SPI), 2 or 4 channel.