From 3f22bb77f120f27fad71b6c47d4eb17936fc42a7 Mon Sep 17 00:00:00 2001 From: Sylvain Miermont Date: Thu, 15 May 2014 13:09:47 +0200 Subject: v1.4.0 - Added calibration routine to optimize RF performance - Added support for SX1301 433 MHz reference board - Improved AGC firmware - Improved RSSI accuracy - Improved utilities Makefile --- libloragw/inc/loragw_hal.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'libloragw/inc/loragw_hal.h') diff --git a/libloragw/inc/loragw_hal.h b/libloragw/inc/loragw_hal.h index 27ca1a2..f76e20e 100644 --- a/libloragw/inc/loragw_hal.h +++ b/libloragw/inc/loragw_hal.h @@ -136,9 +136,12 @@ 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_REF1301 == 1) +#elif ((CFG_BRD_1301REF868 == 1) || (CFG_BRD_1301REF433 == 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 === +#elif (CFG_BRD_MYBOARD == 1) +*/ #elif (CFG_BRD_NONE == 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 */ -- cgit v1.2.3