diff options
author | Matthieu Leurent <mleurent@semtech.com> | 2015-03-11 20:15:40 +0100 |
---|---|---|
committer | Matthieu Leurent <mleurent@semtech.com> | 2015-03-11 20:15:40 +0100 |
commit | 45be5ff473ad1f39829bfcebc641201ae46c1c80 (patch) | |
tree | 5d0720fb06e9bb35ce2c8c2f0749b41a7b42c41a /libloragw/inc | |
parent | be5c8ac770bc5b142e2c6a47702d9ac653141371 (diff) | |
download | lora_gateway-master.tar.gz lora_gateway-master.tar.bz2 lora_gateway-master.zip |
- Added support for Kerlink 868 27dBm gateway
- Updated global_conf.eu868.json (in packet logger) to new LoRaWAN frequency plan
- Added version numbers to AGC, arbiter and calibration firmware (those versions are checked at startup)
- Added test_loragw_cal to test radio calibrations
- Fixed minor bug in error coverage in register read/write functions
/!\ warning: Kerlink 868 27dBm gateway includes a FPGA that MUST be programmed before running any application
Diffstat (limited to 'libloragw/inc')
-rw-r--r-- | libloragw/inc/loragw_hal.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libloragw/inc/loragw_hal.h b/libloragw/inc/loragw_hal.h index 1516b65..8196f70 100644 --- a/libloragw/inc/loragw_hal.h +++ b/libloragw/inc/loragw_hal.h @@ -141,7 +141,7 @@ Maintainer: Sylvain Miermont #if (CFG_BRD_NANO868 == 1) #define LGW_RF_TX_ENABLE { true, true} /* both radio A and B are usable in TX */ #define LGW_RF_CLKOUT { true, true} /* both radios have clkout enabled */ -#elif ((CFG_BRD_1301REF868 == 1) || (CFG_BRD_1301REF433 == 1) || (CFG_BRD_KERLINK868 == 1) || (CFG_BRD_KERLINK433 == 1)) +#elif ((CFG_BRD_1301REF868 == 1) || (CFG_BRD_1301REF433 == 1) || (CFG_BRD_KERLINK868 == 1) || (CFG_BRD_KERLINK868_27DBM == 1) || (CFG_BRD_KERLINK433 == 1)) #define LGW_RF_TX_ENABLE { true,false} /* radio B TX output is disconnected */ #define LGW_RF_CLKOUT {false, true} /* radio A clkout disabled for spur optimization */ #elif ((CFG_BRD_CISCO433 == 1) || (CFG_BRD_CISCO470 == 1) || (CFG_BRD_CISCO780 == 1)) |