Skip to content

Commit 8aa2f46

Browse files
committed
copy latest beta to release
1 parent 418c866 commit 8aa2f46

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

airrohr-firmware/Versions.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
NRZ-2020-131
2+
online since 2020-10-17
3+
* same as NRZ-2019-129-B11
4+
15
NRZ-2020-130-B11
26
* Remove floating point subroutines from IRAM (related to #789)
37
* Show clearly in webui whether we have BME280 or a BMP280

airrohr-firmware/airrohr-firmware.ino

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@
6060
#include <pgmspace.h>
6161

6262
// increment on change
63-
#define SOFTWARE_VERSION_STR "NRZ-2020-130-B11"
63+
#define SOFTWARE_VERSION_STR "NRZ-2020-131"
6464
String SOFTWARE_VERSION(SOFTWARE_VERSION_STR);
6565

6666
/*****************************************************************
@@ -3097,7 +3097,7 @@ static void fetchSensorNPM(String& s) {
30973097
/*****************************************************************
30983098
* read PPD42NS sensor values *
30993099
*****************************************************************/
3100-
static void fetchSensorPPD(String& s) {
3100+
static __noinline void fetchSensorPPD(String& s) {
31013101
debug_outln_verbose(FPSTR(DBG_TXT_START_READING), FPSTR(SENSORS_PPD42NS));
31023102

31033103
if (msSince(starttime) <= SAMPLETIME_MS) {
@@ -3206,7 +3206,6 @@ static void fetchSensorSPS30(String& s) {
32063206
/*****************************************************************
32073207
read DNMS values
32083208
*****************************************************************/
3209-
32103209
static void fetchSensorDNMS(String& s) {
32113210
static bool dnms_error = false;
32123211
debug_outln_verbose(FPSTR(DBG_TXT_START_READING), FPSTR(SENSORS_DNMS));
@@ -3251,6 +3250,7 @@ static void fetchSensorDNMS(String& s) {
32513250
debug_outln_info(FPSTR(DBG_TXT_SEP));
32523251
debug_outln_verbose(FPSTR(DBG_TXT_END_READING), FPSTR(SENSORS_DNMS));
32533252
}
3253+
32543254
/*****************************************************************
32553255
* read GPS sensor values *
32563256
*****************************************************************/

0 commit comments

Comments
 (0)