From 2fb7ed504519fa4cbf81ec094ba068d6c79b1e77 Mon Sep 17 00:00:00 2001 From: Jason Reiss Date: Thu, 8 Apr 2021 12:32:31 -0500 Subject: Update lora_pkt_fwd.c --- lora_pkt_fwd/src/lora_pkt_fwd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lora_pkt_fwd/src/lora_pkt_fwd.c b/lora_pkt_fwd/src/lora_pkt_fwd.c index 754249b..770323b 100644 --- a/lora_pkt_fwd/src/lora_pkt_fwd.c +++ b/lora_pkt_fwd/src/lora_pkt_fwd.c @@ -378,7 +378,7 @@ void lookup_power_settings(float tx_pwr, int8_t* rf_power, int8_t* dig_gain) { for (int i = 0; i < TEMP_LUT_SIZE_MAX; i++) { // If the current temp is lower than the first temp or we reach the end of the table - if ((tx_temp_lut->dig[0].temp > tx_temp_lut->temp_comp_value || i == TEMP_LUT_SIZE_MAX-1) || + if ((tx_temp_lut.lut[0].temp > temp_comp_value || i == TEMP_LUT_SIZE_MAX-1) || (tx_temp_lut.lut[i].temp <= temp_comp_value && tx_temp_lut.lut[i+1].temp > temp_comp_value)) { for (int j = 0; j < TX_GAIN_LUT_SIZE_MAX; j++) { for (int h = 0; h < 4; h++) { -- cgit v1.2.3