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/Makefile | |
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/Makefile')
-rw-r--r-- | libloragw/Makefile | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/libloragw/Makefile b/libloragw/Makefile index f6ba783..2b2090e 100644 --- a/libloragw/Makefile +++ b/libloragw/Makefile @@ -74,6 +74,13 @@ else ifeq ($(CFG_BAND),eu433) else $(error The selected radio(s) cannot work in the selected band.) endif +else ifeq ($(CFG_BAND),cn780) + ifeq ($(CFG_RADIO),sx1257) + CFG_BAND_MSG := China 780 MHz band + CFG_BAND_OPT := CFG_BAND_780 + else + $(error The selected radio(s) cannot work in the selected band.) + endif else $(warning [Warning] No frequency band selected, full radio capability assumed.) CFG_BAND_MSG := Full range supported by the radio(s) @@ -92,6 +99,18 @@ else ifeq ($(CFG_BRD),ref_1301_433) else ifeq ($(CFG_BRD),kerlink_868) CFG_BRD_MSG := Kerlink LoRa 868MHz gateway CFG_BRD_OPT := CFG_BRD_KERLINK868 +else ifeq ($(CFG_BRD),kerlink_433) + CFG_BRD_MSG := Kerlink LoRa 433MHz gateway + CFG_BRD_OPT := CFG_BRD_KERLINK433 +else ifeq ($(CFG_BRD),cisco_433) + CFG_BRD_MSG := Cisco LoRa 433MHz gateway + CFG_BRD_OPT := CFG_BRD_CISCO433 +else ifeq ($(CFG_BRD),cisco_470) + CFG_BRD_MSG := Cisco LoRa 470MHz gateway + CFG_BRD_OPT := CFG_BRD_CISCO470 +else ifeq ($(CFG_BRD),cisco_780) + CFG_BRD_MSG := Cisco LoRa 780MHz gateway + CFG_BRD_OPT := CFG_BRD_CISCO780 else $(info [Info] No specific board selected.) CFG_BRD_MSG := None |