Skip to content

Commit b73dc4d

Browse files
committed
release v2.0.0
drop include for spi driver as it is not ready.
1 parent 2c1127f commit b73dc4d

File tree

4 files changed

+8
-7
lines changed

4 files changed

+8
-7
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ Arduino library for communicating with ANT radios, with support for nRF51 device
99

1010
## News
1111

12+
* 06/28/2020 ant-arduino v2.0.0 released with mbed support
1213
* 10/01/2017 [Antplus-arduino](https://github.com/cujomalainey/antplus-arduino) released
1314
* 09/30/2017 Callback system complete, v1.0.0 released
1415
* 09/10/2017 System refactor complete

library.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
{
22
"name": "ANT",
33
"keywords": "ant, protocol, radio, rf",
4-
"description": "ANT radio support via UART",
4+
"description": "Multi Protocol ANT radio support",
55
"repository":
66
{
77
"type": "git",
88
"url": "https://github.com/cujomalainey/ant-arduino.git"
99
},
10-
"version": "1.1.0",
10+
"version": "2.0.0",
1111
"frameworks": "arduino, mbed",
12-
"platforms": "atmelavr, atmelsam, espressif32, espressif8266, intel_arc32, microchippic32, nordicnrf51, nordicnrf52, ststm32, timsp430, teensy"
12+
"platforms": "*"
1313
}

library.properties

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
name=ANT-Arduino
2-
version=1.1.0
2+
version=2.0.0
33
author=Curtis Malainey <curtis@malainey.com>
44
maintainer=Curtis Malainey <curtis@malainey.com>
5-
sentence=Library for talking to various ANT radios from Dynastream Innovations.
6-
paragraph=Supports nRF51 and nRF52 ANT modules running the network processor firmware that are connected via Serial. Can be configured to work in the ANT+ ecosystem.
5+
sentence=Library for communicating with various ANT radios from Dynastream Innovations.
6+
paragraph=Support for Serial or Softdevice based radios. Can be configured to work in the ANT+ ecosystem.
77
category=Communication
88
url=https://github.com/cujomalainey/ant-arduino
99
architectures=*

src/ANT.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
#include <MainClasses/ANT_ArduinoNativeAntWithCallbacks.h>
3131
#include <MainClasses/ANT_MbedSerialAnt.h>
3232
#include <MainClasses/ANT_MbedSerialAntWithCallbacks.h>
33-
#include <MainClasses/ANT_MbedSpiAnt.h>
33+
// #include <MainClasses/ANT_MbedSpiAnt.h>
3434
// #include <MainClasses/ANT_MbedSpiAntWithCallbacks.h>
3535
// #include <MainClasses/ANT_MbedNativeAnt.h>
3636
// #include <MainClasses/ANT_MbedNativeAntWithCallbacks.h>

0 commit comments

Comments
 (0)