mirror of
https://github.com/RobTillaart/Arduino.git
synced 2024-10-03 18:09:02 -04:00
0.5.1 MCP_DAC
This commit is contained in:
parent
50c820373d
commit
06341881fc
@ -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/).
|
||||
|
||||
|
||||
## [0.5.1] - 2024-06-05
|
||||
- add support for ARDUINO_ARCH_MBED
|
||||
|
||||
## [0.5.0] - 2024-01-20
|
||||
- Fix #29, improve handling SPI dependency.
|
||||
- update examples
|
||||
|
@ -1,7 +1,7 @@
|
||||
//
|
||||
// FILE: MCP_DAC.cpp
|
||||
// AUTHOR: Rob Tillaart
|
||||
// VERSION: 0.5.0
|
||||
// VERSION: 0.5.1
|
||||
// DATE: 2021-02-03
|
||||
// PURPOSE: Arduino library for MCP_DAC
|
||||
// URL: https://github.com/RobTillaart/MCP_DAC
|
||||
|
@ -2,7 +2,7 @@
|
||||
//
|
||||
// FILE: MCP_DAC.h
|
||||
// AUTHOR: Rob Tillaart
|
||||
// VERSION: 0.5.0
|
||||
// VERSION: 0.5.1
|
||||
// DATE: 2021-02-03
|
||||
// PURPOSE: Arduino library for MCP_DAC
|
||||
// URL: https://github.com/RobTillaart/MCP_DAC
|
||||
@ -12,10 +12,14 @@
|
||||
#include "SPI.h"
|
||||
|
||||
|
||||
#define MCP_DAC_LIB_VERSION (F("0.5.0"))
|
||||
#define MCP_DAC_LIB_VERSION (F("0.5.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
|
||||
|
@ -83,6 +83,13 @@ Also it makes the library a bit simpler to maintain.
|
||||
#### Related
|
||||
|
||||
- https://github.com/RobTillaart/MCP_ADC
|
||||
- https://github.com/RobTillaart/MAX520
|
||||
- https://github.com/RobTillaart/MCP_DAC
|
||||
- https://github.com/RobTillaart/MCP4725
|
||||
- https://github.com/RobTillaart/DAC8550
|
||||
- https://github.com/RobTillaart/DAC8551
|
||||
- https://github.com/RobTillaart/DAC8552
|
||||
- https://github.com/RobTillaart/DAC8554
|
||||
|
||||
|
||||
## Interface
|
||||
|
@ -15,7 +15,7 @@
|
||||
"type": "git",
|
||||
"url": "https://github.com/RobTillaart/MCP_DAC"
|
||||
},
|
||||
"version": "0.5.0",
|
||||
"version": "0.5.1",
|
||||
"license": "MIT",
|
||||
"frameworks": "*",
|
||||
"platforms": "*",
|
||||
|
@ -1,5 +1,5 @@
|
||||
name=MCP_DAC
|
||||
version=0.5.0
|
||||
version=0.5.1
|
||||
author=Rob Tillaart <rob.tillaart@gmail.com>
|
||||
maintainer=Rob Tillaart <rob.tillaart@gmail.com>
|
||||
sentence=Arduino library for Microchip SPI DAC, 8, 10, 12 bit; 1 or 2 channel.
|
||||
|
Loading…
Reference in New Issue
Block a user