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 /util_band_survey | |
parent | f991b0e35ad1bd3b999c70e68c518bae91bd36a6 (diff) | |
download | lora_gateway-3f22bb77f120f27fad71b6c47d4eb17936fc42a7.tar.gz lora_gateway-3f22bb77f120f27fad71b6c47d4eb17936fc42a7.tar.bz2 lora_gateway-3f22bb77f120f27fad71b6c47d4eb17936fc42a7.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 'util_band_survey')
-rw-r--r-- | util_band_survey/Makefile | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/util_band_survey/Makefile b/util_band_survey/Makefile index 4597ad4..4371fc0 100644 --- a/util_band_survey/Makefile +++ b/util_band_survey/Makefile @@ -43,10 +43,17 @@ clean: rm -f obj/*.o rm -f $(APP_NAME) -### HAL library +### HAL library (do no force multiple library rebuild even with 'make -B') + +$(LGW_PATH)/inc/config.h: + @if test ! -f $@; then \ + $(MAKE) all -C $(LGW_PATH); \ + fi $(LGW_PATH)/libloragw.a: $(LGW_INC) - $(MAKE) all -C $(LGW_PATH) + @if test ! -f $@; then \ + $(MAKE) all -C $(LGW_PATH); \ + fi ### Main program compilation and assembly |