0.3.1 AD5680

This commit is contained in:
Rob Tillaart 2024-05-23 20:07:14 +02:00
parent 01e238e8b2
commit dcaa087650
5 changed files with 12 additions and 7 deletions

View File

@ -1,7 +1,7 @@
//
// FILE: AD5680.cpp
// AUTHOR: Rob Tillaart
// VERSION: 0.3.0
// VERSION: 0.3.1
// DATE: 2023-09-19
// PURPOSE: Arduino library for AD5680 Digital Analog Convertor (18 bit).

View File

@ -2,7 +2,7 @@
//
// FILE: AD5680.h
// AUTHOR: Rob Tillaart
// VERSION: 0.3.0
// VERSION: 0.3.1
// DATE: 2023-09-19
// PURPOSE: Arduino library for AD5680 Digital Analog Convertor (18 bit).
@ -10,10 +10,13 @@
#include "Arduino.h"
#include "SPI.h"
#define AD5680_LIB_VERSION (F("0.3.0"))
#define AD5680_LIB_VERSION (F("0.3.1"))
#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
#else
#define __SPI_CLASS__ SPIClass

View File

@ -6,10 +6,12 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).
## [0.3.1] - 2024-05-23
- add support for ARDUINO_ARCH_MBED
## [0.3.0] - 2024-01-19
- Fix #7, improve handling SPI dependency.
----
## [0.2.1] - 2024-01-02

View File

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

View File

@ -1,5 +1,5 @@
name=AD5680
version=0.3.0
version=0.3.1
author=Rob Tillaart <rob.tillaart@gmail.com>
maintainer=Rob Tillaart <rob.tillaart@gmail.com>
sentence=Arduino library for AD5680 Digital Analog Convertor (18 bit).