Skip to content

Commit f4cff85

Browse files
committed
v4.1.1
* HAL: Fixed bug in "Listen-Before-Talk" which was preventing from configuring the Scan Time to 5ms. * MISC: Added GPIO number to reset_lgw.sh command arguments.
1 parent 65259a5 commit f4cff85

File tree

5 files changed

+26
-10
lines changed

5 files changed

+26
-10
lines changed

VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
4.1.0
1+
4.1.1

fpga/readme.md

+7-4
Original file line numberDiff line numberDiff line change
@@ -16,15 +16,18 @@ Reference Design board (SX1301AP2-PCB_E336) flash memory.
1616

1717
The different images contain the following features:
1818

19-
* SX1301_FPGA_200K_NOTCH_LBT_SPECTRAL_SCAN_863_v33.hex:
19+
* SX1301_FPGA_200K_NOTCH_LBT_SPECTRAL_SCAN_915_v33.hex:
2020
- 200KHz Notch filter for TX (not programmable)
21-
- Listen-Before-Talk for 863+MHz frequency range
21+
- Listen-Before-Talk for 915+MHz frequency range (Japan)
2222
- Background Spectral Scan (limited)
2323

24-
* SX1301_FPGA_200K_NOTCH_LBT_SPECTRAL_SCAN_915_v33.hex:
24+
* SX1301_FPGA_200K_NOTCH_LBT_SPECTRAL_SCAN_863_v33.hex:
2525
- 200KHz Notch filter for TX (not programmable)
26-
- Listen-Before-Talk for 915+MHz frequency range
26+
- Listen-Before-Talk for 863+MHz frequency range
2727
- Background Spectral Scan (limited)
28+
Note: This image is the same as the 915+MHz version. It is just meant for
29+
testing "Japan-like" LBT feature on a EU868 board. It does not provide certified
30+
LBT for European band.
2831

2932
* SX1301_FPGA_NOTCH_PROG_SPECTRAL_SCAN_v31.hex:
3033
- Programmable notch filter for TX

libloragw/src/loragw_lbt.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ int lbt_setup(void) {
177177
DEBUG_PRINTF("ERROR: Failed to configure FPGA for LBT channel %d (freq offset)\n", i);
178178
return LGW_LBT_ERROR;
179179
}
180-
if (lbt_channel_cfg[i].freq_hz == 5000) { /* configured to 128 by default */
180+
if (lbt_channel_cfg[i].scan_time_us == 5000) { /* configured to 128 by default */
181181
x = lgw_fpga_reg_w(LGW_FPGA_LBT_SCAN_TIME_CH0+i, 1);
182182
if (x != LGW_REG_SUCCESS) {
183183
DEBUG_PRINTF("ERROR: Failed to configure FPGA for LBT channel %d (freq offset)\n", i);

readme.md

+6
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,12 @@ chip through GPIO, before starting any application using the concentrator.
7070
4. Changelog
7171
-------------
7272

73+
### v4.1.1 ###
74+
75+
* HAL: Fixed bug in "Listen-Before-Talk" which was preventing from configuring
76+
the Scan Time to 5ms.
77+
* MISC: Added GPIO number to reset_lgw.sh command arguments.
78+
7379
### v4.1.0 ###
7480

7581
* HAL: Reworked "Listen-Before-Talk" feature to have more flexibility to define

reset_lgw.sh

+11-4
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,22 @@
11
#!/bin/sh
22

3-
# This script is intended to be used on IoT Starter Kit platform only, it
4-
# performs the following actions:
3+
# This script is intended to be used on IoT Starter Kit platform, it performs
4+
# the following actions:
55
# - export/unpexort GPIO7 used to reset the SX1301 chip
66
#
77
# Usage examples:
88
# ./reset_lgw.sh stop
99
# ./reset_lgw.sh start
1010

1111
# The reset pin of SX1301 is wired with RPi GPIO7
12-
IOT_SK_SX1301_RESET_PIN=7
12+
# If used on another platform, the GPIO number can be given as parameter.
13+
if [ -z "$2" ]; then
14+
IOT_SK_SX1301_RESET_PIN=7
15+
else
16+
IOT_SK_SX1301_RESET_PIN=$2
17+
fi
18+
19+
echo "Accessing concentrator reset pin through GPIO$IOT_SK_SX1301_RESET_PIN..."
1320

1421
WAIT_GPIO() {
1522
sleep 0.1
@@ -47,7 +54,7 @@ case "$1" in
4754
iot_sk_term
4855
;;
4956
*)
50-
echo "Usage: $0 {start|stop}"
57+
echo "Usage: $0 {start|stop} [<gpio number>]"
5158
exit 1
5259
;;
5360
esac

0 commit comments

Comments
 (0)