summaryrefslogtreecommitdiff
path: root/libloragw/src/loragw_fpga.c
diff options
context:
space:
mode:
Diffstat (limited to 'libloragw/src/loragw_fpga.c')
-rw-r--r--libloragw/src/loragw_fpga.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/libloragw/src/loragw_fpga.c b/libloragw/src/loragw_fpga.c
index c2cb305..1379679 100644
--- a/libloragw/src/loragw_fpga.c
+++ b/libloragw/src/loragw_fpga.c
@@ -177,12 +177,11 @@ int lgw_fpga_configure(uint32_t tx_notch_freq, bool fpga_attn_used) {
}
/* Set Attenuator mode to be used or not depending on if a full card with valid conf settings are given*/
if (fpga_version == 32) {
- printf("INFO: Full Card with FPGA version %u detected\n", fpga_version);
if (fpga_attn_used == true) {
lgw_reg_w(LGW_FPGA_RF_ATTN_MODE, 0);
- printf("INFO: Valid config detected. Using Attenuator mode\n");
+ printf("INFO: Valid attenuation settings detected. Using Attenuator mode\n");
} else {
- printf("INFO: Invalid config detected. Using Legacy mode\n");
+ printf("INFO: Valid attenuation settings not detected. Using Legacy mode\n");
lgw_reg_w(LGW_FPGA_RF_ATTN_MODE, 1);
}
} else {