Skip to content

Commit 03fee73

Browse files
authored
Merge pull request #805 from dirkmueller/beta
Remove FP subroutines from IRAM (#789)
2 parents 04d54e3 + eedd346 commit 03fee73

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

airrohr-firmware/Versions.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
NRZ-2020-130-B11
2+
* Remove floating point subroutines from IRAM (related to #789)
3+
14
NRZ-2020-130-B10
25
* Show GPS date+time also as datetime timestamp
36
* Reduce loop size (Related to #789)

airrohr-firmware/airrohr-firmware.ino

Lines changed: 1 addition & 1 deletion
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-B10"
63+
#define SOFTWARE_VERSION_STR "NRZ-2020-130-B11"
6464
String SOFTWARE_VERSION(SOFTWARE_VERSION_STR);
6565

6666
/*****************************************************************

airrohr-firmware/platformio.ini

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ build_flags =
2424
-DVTABLES_IN_FLASH -D BEARSSL_SSL_BASIC
2525
-D PIO_FRAMEWORK_ARDUINO_LWIP2_HIGHER_BANDWIDTH
2626
-D HTTPCLIENT_1_1_COMPATIBLE=0 -D NO_GLOBAL_SERIAL=0
27-
-DNDEBUG
27+
-DNDEBUG -DFP_IN_IROM -frandom-seed=b61f78373
2828

2929
build_flags_esp32 =
3030
-DPIO_FRAMEWORK_ARDUINO_LWIP2_LOW_MEMORY
@@ -35,6 +35,7 @@ build_flags_esp32_debug = ${common.build_flags_esp32} -g -Og -fno-inline -DUSING
3535
board_build.ldscript = eagle.flash.4m3m.ld
3636
board_build.filesystem = spiffs
3737
board_build.f_cpu = 160000000L
38+
3839
; Always depend on specific library versions (wherever possible and only for external libraries)
3940
; Keep Library names in the order of their dependencies (leaves at the top)
4041
; ESP8266WiFi in both cases is necessary to solve a case sensitivity issue with WiFiUdp.h

0 commit comments

Comments
 (0)