diff options
author | Sylvain Miermont <smiermont@semtech.com> | 2014-05-15 13:09:47 +0200 |
---|---|---|
committer | Sylvain Miermont <smiermont@semtech.com> | 2014-05-15 13:09:47 +0200 |
commit | 3f22bb77f120f27fad71b6c47d4eb17936fc42a7 (patch) | |
tree | e73789fb025ac2d9e14663781271ef8034906c02 /libloragw/Makefile | |
parent | f991b0e35ad1bd3b999c70e68c518bae91bd36a6 (diff) | |
download | lora_gateway-1.4.0.tar.gz lora_gateway-1.4.0.tar.bz2 lora_gateway-1.4.0.zip |
v1.4.0v1.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
Diffstat (limited to 'libloragw/Makefile')
-rw-r--r-- | libloragw/Makefile | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/libloragw/Makefile b/libloragw/Makefile index 9d5660b..6db5764 100644 --- a/libloragw/Makefile +++ b/libloragw/Makefile @@ -83,9 +83,12 @@ endif ifeq ($(CFG_BRD),dev_nano_868) CFG_BRD_MSG := FPGA-based nano-concentrator, with 868 MHz SAW filter CFG_BRD_OPT := CFG_BRD_NANO868 -else ifeq ($(CFG_BRD),ref_1301_57nf) - CFG_BRD_MSG := SX1301 reference board with SX1257 radios, no filters - CFG_BRD_OPT := CFG_BRD_REF1301 +else ifeq ($(CFG_BRD),ref_1301_868) + CFG_BRD_MSG := SX1301 reference board with SX1257 radios, 868 MHz filters + CFG_BRD_OPT := CFG_BRD_1301REF868 +else ifeq ($(CFG_BRD),ref_1301_433) + CFG_BRD_MSG := SX1301 reference board with SX1255 radios, 433 MHz filters + CFG_BRD_OPT := CFG_BRD_1301REF433 else $(info [Info] No specific board selected.) CFG_BRD_MSG := None @@ -162,7 +165,7 @@ endif obj/loragw_reg.o: src/loragw_reg.c inc/loragw_reg.h inc/loragw_spi.h inc/config.h $(CC) -c $(CFLAGS) $< -o $@ -obj/loragw_hal.o: src/loragw_hal.c inc/loragw_hal.h inc/loragw_reg.h inc/loragw_aux.h src/arb_fw.var src/agc_fw.var inc/config.h +obj/loragw_hal.o: src/loragw_hal.c inc/loragw_hal.h inc/loragw_reg.h inc/loragw_aux.h src/arb_fw.var src/agc_fw.var src/cal_fw.var inc/config.h $(CC) -c $(CFLAGS) $< -o $@ obj/loragw_gps.o: src/loragw_gps.c inc/loragw_gps.h inc/config.h |