Skip to content

Commit dd43aff

Browse files
authored
LoRa_EdgeControl.ino
When testing this application we encountered that MKR WAN receives packeges but the Edge Control fails to print the message. Error:rpc_retrieve_LoRa_data() failed!
1 parent 7715cae commit dd43aff

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/RPC/LORA_EdgeControl/LORA_EdgeControl.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ void rpc_retrieve_LoRa_data()
4040
void *message;
4141
size_t result_data_len;
4242

43-
if (rpc.call_no_copy_no_args(F("retrieve_msg"), &message, &result_data_len) ) {
43+
if (rpc.call_no_copy_no_args(F("retrieve_msg"), &message, &result_data_len) ) { //We think this condition fails causing message not to be print
4444

4545
char buff[result_data_len + 1];
4646
memset(buff, 0, result_data_len + 1);

0 commit comments

Comments
 (0)