summaryrefslogtreecommitdiff
path: root/libloragw/inc/loragw_hal.h
diff options
context:
space:
mode:
authorSylvain Miermont <smiermont@semtech.com>2014-06-27 15:45:51 +0200
committerSylvain Miermont <smiermont@semtech.com>2014-06-27 15:45:51 +0200
commit5b962da815a502559a27c3d283c22a0a943f23bb (patch)
tree7d025f87ee47e7d272e0419c447a79cb055f318f /libloragw/inc/loragw_hal.h
parent3f22bb77f120f27fad71b6c47d4eb17936fc42a7 (diff)
downloadlora_gateway-5b962da815a502559a27c3d283c22a0a943f23bb.tar.gz
lora_gateway-5b962da815a502559a27c3d283c22a0a943f23bb.tar.bz2
lora_gateway-5b962da815a502559a27c3d283c22a0a943f23bb.zip
v1.4.1v1.4.1
- Enabling support for FSK per LoRa MAC specification - Adjusting TX and RX calibration set on 868 reference board - Added specific RX/TX calibration set for Kerlink 868 "IoT station" gateway - Changed default SPI port for native driver to Kerlink SPI device number
Diffstat (limited to 'libloragw/inc/loragw_hal.h')
-rw-r--r--libloragw/inc/loragw_hal.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libloragw/inc/loragw_hal.h b/libloragw/inc/loragw_hal.h
index f76e20e..187fca3 100644
--- a/libloragw/inc/loragw_hal.h
+++ b/libloragw/inc/loragw_hal.h
@@ -136,7 +136,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))
+#elif ((CFG_BRD_1301REF868 == 1) || (CFG_BRD_1301REF433 == 1) || (CFG_BRD_KERLINK868 == 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 */
/* === ADD CUSTOMIZATION FOR YOUR OWN BOARD HERE ===