We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7818733 commit 0a94172Copy full SHA for 0a94172
features/lorawan/lorastack/mac/LoRaMac.cpp
@@ -1856,7 +1856,6 @@ uint8_t LoRaMac::get_max_possible_tx_size(uint8_t fopts_len)
1856
max_possible_payload_size = allowed_frm_payload_size - fopts_len;
1857
} else {
1858
max_possible_payload_size = allowed_frm_payload_size;
1859
- fopts_len = 0;
1860
_mac_commands.clear_command_buffer();
1861
_mac_commands.clear_repeat_buffer();
1862
}
features/lorawan/lorastack/phy/LoRaPHY.cpp
@@ -36,7 +36,8 @@ SPDX-License-Identifier: BSD-3-Clause
36
#define CHANNELS_IN_MASK 16
37
38
LoRaPHY::LoRaPHY()
39
- : _radio(NULL)
+ : _radio(NULL),
40
+ _lora_time(NULL)
41
{
42
memset(&phy_params, 0, sizeof(phy_params));
43
0 commit comments