diff options
author | Sylvain Miermont <smiermont@semtech.com> | 2014-10-27 15:00:25 +0100 |
---|---|---|
committer | Sylvain Miermont <smiermont@semtech.com> | 2014-10-27 15:00:25 +0100 |
commit | 23127d92c2c2cbef1b870686c4fc2dd5ba05daec (patch) | |
tree | d22c4588938d6e9d5a6f0c64dcdf2699bb135b6f /libloragw/tst | |
parent | a39d133560cbb617557bb912f0c188bab73055fd (diff) | |
download | lora_gateway-23127d92c2c2cbef1b870686c4fc2dd5ba05daec.tar.gz lora_gateway-23127d92c2c2cbef1b870686c4fc2dd5ba05daec.tar.bz2 lora_gateway-23127d92c2c2cbef1b870686c4fc2dd5ba05daec.zip |
v1.6.0v1.6.0
- Fixed bug with 250kHz and 500 kHz TX filtering
- Adjusted FSK timestamp calibration in RX for accurate RX/TX alignment
- Added lgw_abort_tx() function to stop a TX at any time (scheduled or ongoing)
- Added support for user-settable FSK sync word (same for RX and TX)
- Added support for the Chinese 780 MHz band
- Added support for Kerlink 433 gateway
- Added support for Cisco 433, 470 & 780 MHz concentrators boards
Diffstat (limited to 'libloragw/tst')
-rw-r--r-- | libloragw/tst/test_loragw_hal.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libloragw/tst/test_loragw_hal.c b/libloragw/tst/test_loragw_hal.c index b7b8962..a196b99 100644 --- a/libloragw/tst/test_loragw_hal.c +++ b/libloragw/tst/test_loragw_hal.c @@ -58,6 +58,10 @@ Maintainer: Sylvain Miermont #define F_RX_0 433500000 #define F_RX_1 434500000 #define F_TX 434000000 +#elif (CFG_BAND_780 == 1) + #define F_RX_0 780500000 + #define F_RX_1 781500000 + #define F_TX 781000000 #endif /* -------------------------------------------------------------------------- */ |