Skip to content

Commit 78fe4e8

Browse files
committed
Current state is good enough to qualify it as Release 1.4
1 parent b21e57f commit 78fe4e8

File tree

5 files changed

+13
-5
lines changed

5 files changed

+13
-5
lines changed

software/firmware/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
8585
* ESP8266Audio library is developed by **Earle Philhower**
8686
* IniFile library is developed by **Steve Marple**
8787
* MD5 library is developed by **Vasilis Georgitzikis**
88-
* LibAPRS-ESP32 library is developed by **Evan Krall** and **Atten Nakhonthai**
88+
* LibAPRS-ESP32 library is developed by **Evan Krall** and **Somkiat Nakhonthai**
8989
* SA818 library is developed by **Gibbon Zen**
9090
* OpenDroneID library is developed by **Steve Jack**

software/firmware/source/SoftRF/SoftRF.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@
3232
#endif /* RASPBERRY_PI */
3333

3434
#define SOFTRF_IDENT "SoftRF"
35-
#define SOFTRF_FIRMWARE_VERSION "1.3"
36-
#define SOFTRF_USB_FW_VERSION 0x0103
35+
#define SOFTRF_FIRMWARE_VERSION "1.4"
36+
#define SOFTRF_USB_FW_VERSION 0x0104
3737

3838
#define ENTRY_EXPIRATION_TIME 10 /* seconds */
3939
#define LED_EXPIRATION_TIME 5 /* seconds */

software/firmware/source/SoftRF/SoftRF.ino

+1-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@
6363
* Pico PIO USB library is developed by sekigon-gonnoc
6464
* IniFile library is developed by Steve Marple
6565
* MD5 library is developed by Vasilis Georgitzikis
66-
* LibAPRS-ESP32 library is developed by Evan Krall and Atten Nakhonthai
66+
* LibAPRS-ESP32 library is developed by Evan Krall and Somkiat Nakhonthai
6767
* SA818 library is developed by Gibbon Zen
6868
* OpenDroneID library is developed by Steve Jack
6969
*

software/firmware/source/SoftRF/src/driver/RF.cpp

+8
Original file line numberDiff line numberDiff line change
@@ -2469,6 +2469,14 @@ static void sa8x8_setup()
24692469
if (controller.getModel() == Model::SA_818) {
24702470
controller.closeTail();
24712471
}
2472+
2473+
/*
2474+
* Owners of T-TWR Plus V2.0 board with no R22 fix
2475+
* may consider to increase the volume setting
2476+
* up to 6 for a better 'APRS sensitivity' at an expense of
2477+
* very loud sound from the speaker.
2478+
* A disconnect of the speaker is one of the options to think about.
2479+
*/
24722480
controller.setVolume(1);
24732481

24742482
protocol_encode = &aprs_encode;

software/firmware/source/SoftRF/src/ui/Web.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ static const char about_html[] PROGMEM = "<html>\
126126
<tr><th align=left>Michael Kuyper</th><td align=left>Basic MAC library</td></tr>\
127127
<tr><th align=left>Steve Marple</th><td align=left>IniFile library</td></tr>\
128128
<tr><th align=left>Vasilis Georgitzikis</th><td align=left>MD5 library</td></tr>\
129-
<tr><th align=left>Evan Krall and Atten Nakhonthai</th><td align=left>LibAPRS-ESP32 library</td></tr>\
129+
<tr><th align=left>Evan Krall and Somkiat Nakhonthai</th><td align=left>LibAPRS-ESP32 library</td></tr>\
130130
<tr><th align=left>Gibbon Zen</th><td align=left>SA818 library</td></tr>\
131131
<tr><th align=left>Steve Jack</th><td align=left>OpenDroneID library</td></tr>\
132132
</table>\

0 commit comments

Comments
 (0)