mirror of
https://github.com/RobTillaart/Arduino.git
synced 2024-10-03 18:09:02 -04:00
0.3.2 AD985x
This commit is contained in:
parent
73889f830f
commit
4906db7824
@ -2,6 +2,10 @@ compile:
|
|||||||
# Choosing to run compilation tests on 2 different Arduino platforms
|
# Choosing to run compilation tests on 2 different Arduino platforms
|
||||||
platforms:
|
platforms:
|
||||||
- uno
|
- uno
|
||||||
- leonardo
|
# - due
|
||||||
- due
|
# - zero
|
||||||
- zero
|
# - leonardo
|
||||||
|
- m4
|
||||||
|
- esp32
|
||||||
|
# - esp8266
|
||||||
|
# - mega2560
|
@ -1,7 +1,7 @@
|
|||||||
//
|
//
|
||||||
// FILE: AD985X.cpp
|
// FILE: AD985X.cpp
|
||||||
// AUTHOR: Rob Tillaart
|
// AUTHOR: Rob Tillaart
|
||||||
// VERSION: 0.3.1
|
// VERSION: 0.3.2
|
||||||
// DATE: 2019-02-08
|
// DATE: 2019-02-08
|
||||||
// PURPOSE: Class for AD9850 and AD9851 function generator
|
// PURPOSE: Class for AD9850 and AD9851 function generator
|
||||||
//
|
//
|
||||||
@ -19,6 +19,7 @@
|
|||||||
// 0.3.1 2021-08-25 VSPI / HSPI support for ESP32
|
// 0.3.1 2021-08-25 VSPI / HSPI support for ESP32
|
||||||
// faster software SPI
|
// faster software SPI
|
||||||
// minor optimizations / refactor
|
// minor optimizations / refactor
|
||||||
|
// 0.3.2 2021-10-16 update build-ci
|
||||||
|
|
||||||
|
|
||||||
#include "AD985X.h"
|
#include "AD985X.h"
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
//
|
//
|
||||||
// FILE: AD985X.h
|
// FILE: AD985X.h
|
||||||
// AUTHOR: Rob Tillaart
|
// AUTHOR: Rob Tillaart
|
||||||
// VERSION: 0.3.1
|
// VERSION: 0.3.2
|
||||||
// DATE: 2019-02-08
|
// DATE: 2019-02-08
|
||||||
// PURPOSE: Class for AD9850 and AD9851 function generator
|
// PURPOSE: Class for AD9850 and AD9851 function generator
|
||||||
//
|
//
|
||||||
@ -14,7 +14,7 @@
|
|||||||
#include "SPI.h"
|
#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)
|
#define AD9850_MAX_FREQ (40UL * 1000UL * 1000UL)
|
||||||
|
@ -287,7 +287,6 @@ The user is also responsible to store it e.g. in EEPROM to make it persistent.
|
|||||||
|
|
||||||
## Future
|
## Future
|
||||||
|
|
||||||
- test library with an ESP32 (check details)
|
|
||||||
- examples for ESP32 HWSPI interface
|
- examples for ESP32 HWSPI interface
|
||||||
- performance measurements
|
- performance measurements
|
||||||
|
|
||||||
|
@ -15,7 +15,7 @@
|
|||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/RobTillaart/AD985X.git"
|
"url": "https://github.com/RobTillaart/AD985X.git"
|
||||||
},
|
},
|
||||||
"version": "0.3.1",
|
"version": "0.3.2",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"frameworks": "arduino",
|
"frameworks": "arduino",
|
||||||
"platforms": "*"
|
"platforms": "*"
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
name=AD985X
|
name=AD985X
|
||||||
version=0.3.1
|
version=0.3.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 AD9850 and AD9851 function generators. Supports both hardware SPI as software SPI.
|
sentence=Arduino library for AD9850 and AD9851 function generators. Supports both hardware SPI as software SPI.
|
||||||
|
Loading…
Reference in New Issue
Block a user