Skip to content

Commit d75930d

Browse files
committed
Bump to 4.0.2 to fix release versioning
Also added a warning message about interrupts on ESP32 platforms
1 parent 8b77751 commit d75930d

File tree

4 files changed

+10
-2
lines changed

4 files changed

+10
-2
lines changed

Changelog.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
2020-11-02:
2+
- Version 4.0.2
3+
- No real changes, just needed to fix release versioning on GitHub
4+
15
2020-11-01:
26
- Version 4.0.1
37
- Fixed issue with SPI.usingInterrupts() not being supported on ESP platforms

library.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "nRF905 Radio Library",
3-
"version": "4.0.1",
3+
"version": "4.0.2",
44
"keywords": "Arduino, Communication, nRF905, Nordic, 433Mhz, 868Mhz, 915Mhz, STM32, ESP8266, NodeMCU, ESP32, M5Stack",
55
"description": "nRF905 Radio Library for Arduino",
66
"repository":

library.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name=nRF905 Radio Library
2-
version=4.0.1
2+
version=4.0.2
33
author=Zak Kemble <[email protected]>
44
maintainer=Zak Kemble <[email protected]>
55
sentence=nRF905 Radio Library for Arduino

src/nRF905.cpp

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,10 @@
1313
#include "nRF905_config.h"
1414
#include "nRF905_defs.h"
1515

16+
#if defined(ESP32)
17+
#warning "ESP32 platforms don't seem to have a way of disabling and enabling interrupts. Try to avoid accessing the SPI bus from within the nRF905 event functions. That is, don't read the payload from inside the rxComplete event and make sure to connect the AM pin. See https://github.com/zkemble/nRF905-arduino/issues/1"
18+
#endif
19+
1620
static const uint8_t config[] PROGMEM = {
1721
NRF905_CMD_W_CONFIG,
1822
NRF905_CHANNEL,

0 commit comments

Comments
 (0)