Skip to content

Commit

Permalink
Current state is good enough to qualify it as Release 1.4
Browse files Browse the repository at this point in the history
  • Loading branch information
lyusupov committed Nov 7, 2023
1 parent b21e57f commit 78fe4e8
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 5 deletions.
2 changes: 1 addition & 1 deletion software/firmware/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,6 @@ along with this program. If not, see <http:https://www.gnu.org/licenses/>.
* ESP8266Audio library is developed by **Earle Philhower**
* IniFile library is developed by **Steve Marple**
* MD5 library is developed by **Vasilis Georgitzikis**
* LibAPRS-ESP32 library is developed by **Evan Krall** and **Atten Nakhonthai**
* LibAPRS-ESP32 library is developed by **Evan Krall** and **Somkiat Nakhonthai**
* SA818 library is developed by **Gibbon Zen**
* OpenDroneID library is developed by **Steve Jack**
4 changes: 2 additions & 2 deletions software/firmware/source/SoftRF/SoftRF.h
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@
#endif /* RASPBERRY_PI */

#define SOFTRF_IDENT "SoftRF"
#define SOFTRF_FIRMWARE_VERSION "1.3"
#define SOFTRF_USB_FW_VERSION 0x0103
#define SOFTRF_FIRMWARE_VERSION "1.4"
#define SOFTRF_USB_FW_VERSION 0x0104

#define ENTRY_EXPIRATION_TIME 10 /* seconds */
#define LED_EXPIRATION_TIME 5 /* seconds */
Expand Down
2 changes: 1 addition & 1 deletion software/firmware/source/SoftRF/SoftRF.ino
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@
* Pico PIO USB library is developed by sekigon-gonnoc
* IniFile library is developed by Steve Marple
* MD5 library is developed by Vasilis Georgitzikis
* LibAPRS-ESP32 library is developed by Evan Krall and Atten Nakhonthai
* LibAPRS-ESP32 library is developed by Evan Krall and Somkiat Nakhonthai
* SA818 library is developed by Gibbon Zen
* OpenDroneID library is developed by Steve Jack
*
Expand Down
8 changes: 8 additions & 0 deletions software/firmware/source/SoftRF/src/driver/RF.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2469,6 +2469,14 @@ static void sa8x8_setup()
if (controller.getModel() == Model::SA_818) {
controller.closeTail();
}

/*
* Owners of T-TWR Plus V2.0 board with no R22 fix
* may consider to increase the volume setting
* up to 6 for a better 'APRS sensitivity' at an expense of
* very loud sound from the speaker.
* A disconnect of the speaker is one of the options to think about.
*/
controller.setVolume(1);

protocol_encode = &aprs_encode;
Expand Down
2 changes: 1 addition & 1 deletion software/firmware/source/SoftRF/src/ui/Web.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ static const char about_html[] PROGMEM = "<html>\
<tr><th align=left>Michael Kuyper</th><td align=left>Basic MAC library</td></tr>\
<tr><th align=left>Steve Marple</th><td align=left>IniFile library</td></tr>\
<tr><th align=left>Vasilis Georgitzikis</th><td align=left>MD5 library</td></tr>\
<tr><th align=left>Evan Krall and Atten Nakhonthai</th><td align=left>LibAPRS-ESP32 library</td></tr>\
<tr><th align=left>Evan Krall and Somkiat Nakhonthai</th><td align=left>LibAPRS-ESP32 library</td></tr>\
<tr><th align=left>Gibbon Zen</th><td align=left>SA818 library</td></tr>\
<tr><th align=left>Steve Jack</th><td align=left>OpenDroneID library</td></tr>\
</table>\
Expand Down

0 comments on commit 78fe4e8

Please sign in to comment.