0.5.1 MCP_ADC

This commit is contained in:
Rob Tillaart 2024-06-05 19:00:22 +02:00
parent 1c6568ca59
commit 50c820373d
5 changed files with 12 additions and 6 deletions

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.5.1] - 2024-06-05
- add support for ARDUINO_ARCH_MBED
## [0.5.0] - 2024-01-20 ## [0.5.0] - 2024-01-20
- Fix #22, improve handling SPI dependency. - Fix #22, improve handling SPI dependency.
- update examples - update examples

View File

@ -1,7 +1,7 @@
// //
// FILE: MCP_ADC.cpp // FILE: MCP_ADC.cpp
// AUTHOR: Rob Tillaart // AUTHOR: Rob Tillaart
// VERSION: 0.5.0 // VERSION: 0.5.1
// DATE: 2019-10-24 // DATE: 2019-10-24
// PURPOSE: Arduino library for MCP3001, MCP3002, MCP3004, MCP3008, MCP3201, MCP3202, MCP3204, MCP3208 // PURPOSE: Arduino library for MCP3001, MCP3002, MCP3004, MCP3008, MCP3201, MCP3202, MCP3204, MCP3208
// URL: https://github.com/RobTillaart/MCP_ADC // URL: https://github.com/RobTillaart/MCP_ADC

View File

@ -2,7 +2,7 @@
// //
// FILE: MCP_ADC.h // FILE: MCP_ADC.h
// AUTHOR: Rob Tillaart // AUTHOR: Rob Tillaart
// VERSION: 0.5.0 // VERSION: 0.5.1
// DATE: 2019-10-24 // DATE: 2019-10-24
// PURPOSE: Arduino library for MCP3001, MCP3002, MCP3004, MCP3008, MCP3201, MCP3202, MCP3204, MCP3208 // PURPOSE: Arduino library for MCP3001, MCP3002, MCP3004, MCP3008, MCP3201, MCP3202, MCP3204, MCP3208
// URL: https://github.com/RobTillaart/MCP_ADC // URL: https://github.com/RobTillaart/MCP_ADC
@ -18,11 +18,14 @@
#include "SPI.h" #include "SPI.h"
#define MCP_ADC_LIB_VERSION (F("0.5.0")) #define MCP_ADC_LIB_VERSION (F("0.5.1"))
#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

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

View File

@ -1,5 +1,5 @@
name=MCP_ADC name=MCP_ADC
version=0.5.0 version=0.5.1
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 MCP_ADC, e.g. MCP3008 SPI 10 bit, 8 channel ADC sentence=Arduino library for MCP_ADC, e.g. MCP3008 SPI 10 bit, 8 channel ADC