0.3.2 AD985x

This commit is contained in:
rob tillaart 2021-10-16 22:10:27 +02:00
parent 73889f830f
commit 4906db7824
6 changed files with 13 additions and 9 deletions

View File

@ -2,6 +2,10 @@ compile:
# Choosing to run compilation tests on 2 different Arduino platforms
platforms:
- uno
- leonardo
- due
- zero
# - due
# - zero
# - leonardo
- m4
- esp32
# - esp8266
# - mega2560

View File

@ -1,7 +1,7 @@
//
// FILE: AD985X.cpp
// AUTHOR: Rob Tillaart
// VERSION: 0.3.1
// VERSION: 0.3.2
// DATE: 2019-02-08
// PURPOSE: Class for AD9850 and AD9851 function generator
//
@ -19,6 +19,7 @@
// 0.3.1 2021-08-25 VSPI / HSPI support for ESP32
// faster software SPI
// minor optimizations / refactor
// 0.3.2 2021-10-16 update build-ci
#include "AD985X.h"

View File

@ -2,7 +2,7 @@
//
// FILE: AD985X.h
// AUTHOR: Rob Tillaart
// VERSION: 0.3.1
// VERSION: 0.3.2
// DATE: 2019-02-08
// PURPOSE: Class for AD9850 and AD9851 function generator
//
@ -14,7 +14,7 @@
#include "SPI.h"
#define AD985X_LIB_VERSION (F("0.3.1"))
#define AD985X_LIB_VERSION (F("0.3.2"))
#define AD9850_MAX_FREQ (40UL * 1000UL * 1000UL)

View File

@ -287,7 +287,6 @@ The user is also responsible to store it e.g. in EEPROM to make it persistent.
## Future
- test library with an ESP32 (check details)
- examples for ESP32 HWSPI interface
- performance measurements

View File

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

View File

@ -1,5 +1,5 @@
name=AD985X
version=0.3.1
version=0.3.2
author=Rob Tillaart <rob.tillaart@gmail.com>
maintainer=Rob Tillaart <rob.tillaart@gmail.com>
sentence=Arduino library for AD9850 and AD9851 function generators. Supports both hardware SPI as software SPI.