diff options
author | Jason Reiss <jreiss@multitech.com> | 2021-04-14 16:59:21 -0500 |
---|---|---|
committer | Jason Reiss <jreiss@multitech.com> | 2021-04-14 16:59:21 -0500 |
commit | eb187e68854ee7d1896890240e85d73811124146 (patch) | |
tree | b240d5a08aaf8313df9332f5f9e4c06c183a345c | |
parent | 2fb7ed504519fa4cbf81ec094ba068d6c79b1e77 (diff) | |
download | packet_forwarder_mtac_full-eb187e68854ee7d1896890240e85d73811124146.tar.gz packet_forwarder_mtac_full-eb187e68854ee7d1896890240e85d73811124146.tar.bz2 packet_forwarder_mtac_full-eb187e68854ee7d1896890240e85d73811124146.zip |
check size of temp tables loaded4.0.4-4
-rw-r--r-- | lora_pkt_fwd/src/lora_pkt_fwd.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lora_pkt_fwd/src/lora_pkt_fwd.c b/lora_pkt_fwd/src/lora_pkt_fwd.c index 770323b..c6a01b2 100644 --- a/lora_pkt_fwd/src/lora_pkt_fwd.c +++ b/lora_pkt_fwd/src/lora_pkt_fwd.c @@ -376,9 +376,9 @@ struct lgw_tx_temp_lut_s tx_temp_lut; void lookup_power_settings(float tx_pwr, int8_t* rf_power, int8_t* dig_gain) { float min_diff = 99; - for (int i = 0; i < TEMP_LUT_SIZE_MAX; i++) { + for (int i = 0; i < tx_temp_lut.size; i++) { // If the current temp is lower than the first temp or we reach the end of the table - if ((tx_temp_lut.lut[0].temp > temp_comp_value || i == TEMP_LUT_SIZE_MAX-1) || + if ((tx_temp_lut.lut[0].temp > temp_comp_value || i == tx_temp_lut.size-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++) { |