Skip to content

Commit 03f69b3

Browse files
renovate[bot]mverch67DanielCao0
authored
Update RadioLib to v7.4.0 (#8456)
* fix strlcpy compile error in Ubuntu 22.04 (#8520) * fix strlcpy error in Ubuntu 20.04 * add to native after tests * Add support for RAK_WISMESH_TAP_V2 and RAK3401 hardware models (#8537) * Update RadioLib to v7.4.0 --------- Co-authored-by: Manuel <[email protected]> Co-authored-by: Daniel.Cao <[email protected]> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent 8395429 commit 03f69b3

File tree

4 files changed

+9
-1
lines changed

4 files changed

+9
-1
lines changed

platformio.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ lib_deps =
115115
[radiolib_base]
116116
lib_deps =
117117
# renovate: datasource=custom.pio depName=RadioLib packageName=jgromes/library/RadioLib
118-
jgromes/RadioLib@7.3.0
118+
jgromes/RadioLib@7.4.0
119119

120120
[device-ui_base]
121121
lib_deps =

src/platform/esp32/architecture.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -191,6 +191,8 @@
191191
#define HW_VENDOR meshtastic_HardwareModel_CROWPANEL
192192
#elif defined(RAK3312)
193193
#define HW_VENDOR meshtastic_HardwareModel_RAK3312
194+
#elif defined(RAK_WISMESH_TAP_V2)
195+
#define HW_VENDOR meshtastic_HardwareModel_WISMESH_TAP_V2
194196
#elif defined(LINK_32)
195197
#define HW_VENDOR meshtastic_HardwareModel_LINK_32
196198
#elif defined(T_DECK_PRO)

src/platform/nrf52/architecture.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,8 @@
6060
// MAke sure all custom RAK4630 boards are defined before the generic RAK4630
6161
#elif defined(RAK4630)
6262
#define HW_VENDOR meshtastic_HardwareModel_RAK4631
63+
#elif defined(RAK3401)
64+
#define HW_VENDOR meshtastic_HardwareModel_RAK3401
6365
#elif defined(TTGO_T_ECHO)
6466
#define HW_VENDOR meshtastic_HardwareModel_T_ECHO
6567
#elif defined(T_ECHO_LITE)

variants/native/portduino/platformio.ini

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ build_flags = ${native_base.build_flags}
1818
!pkg-config --libs libulfius --silence-errors || :
1919
!pkg-config --libs openssl --silence-errors || :
2020
!pkg-config --cflags --libs sdl2 --silence-errors || :
21+
!pkg-config --cflags --libs libbsd-overlay --silence-errors || :
2122

2223
[env:native-tft]
2324
extends = native_base
@@ -43,6 +44,7 @@ build_flags = ${native_base.build_flags} -Os -lX11 -linput -lxkbcommon -ffunctio
4344
!pkg-config --libs libulfius --silence-errors || :
4445
!pkg-config --libs openssl --silence-errors || :
4546
!pkg-config --cflags --libs sdl2 --silence-errors || :
47+
!pkg-config --cflags --libs libbsd-overlay --silence-errors || :
4648
build_src_filter =
4749
${native_base.build_src_filter}
4850

@@ -71,6 +73,7 @@ build_flags = ${native_base.build_flags} -Os -ffunction-sections -fdata-sections
7173
-D MAP_FULL_REDRAW
7274
!pkg-config --libs libulfius --silence-errors || :
7375
!pkg-config --libs openssl --silence-errors || :
76+
!pkg-config --cflags --libs libbsd-overlay --silence-errors || :
7477
build_src_filter =
7578
${native_base.build_src_filter}
7679

@@ -103,6 +106,7 @@ build_flags = ${native_base.build_flags} -O0 -fsanitize=address -lX11 -linput -l
103106
-D VIEW_320x240
104107
!pkg-config --libs libulfius --silence-errors || :
105108
!pkg-config --libs openssl --silence-errors || :
109+
!pkg-config --cflags --libs libbsd-overlay --silence-errors || :
106110
build_src_filter = ${env:native-tft.build_src_filter}
107111

108112
[env:coverage]

0 commit comments

Comments
 (0)