<div dir="ltr"><div>Hi Ross,</div><div><br></div><div>Thank you and done:</div><div><br></div><div>PRINT DRONE HERE:<br>02:01:03:01:17:30:33:5a:31:34:33:37:31:33:34:00:00:00:00:00:00:52:65:64:20:43:61:74:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:d8:a3:b4:81:5b:01:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:30:35:4c:55:30:31:39:39:53:50:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:b8:<br>DONE</div><div><br></div><div>How does one convert the output to something readable?</div><div><br></div><div>Thanks.<br></div><div><br></div></div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Mon, Jul 27, 2020 at 10:47 AM Ross Finlayson <<a href="mailto:finlayson@live555.com">finlayson@live555.com</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><br>
<br>
> On Jul 27, 2020, at 12:19 PM, big dog <<a href="mailto:ifusereqtrue@gmail.com" target="_blank">ifusereqtrue@gmail.com</a>> wrote:<br>
> <br>
> Hi,<br>
> <br>
> I am troubleshooting the drone type information but struggling with my limited c++ knowledge. In my log the drone type is unknown, this is a mavic 2.<br>
> <br>
> I can see interpretationTables.cpp and i see mavic 2 is missing, am i right in assuming that an int is output and mapped to a string? <br>
> <br>
> Per my previous email about printing out information, i have put the following in the parseRecord_RECOVER.cpp at the top of the function:<br>
> <br>
> for (u_int8_t const* p = ptr; p < limit; ++p) fprintf(stderr, "PRINT DRONE HERE:%02x", *p);<br>
> fprintf(stderr, "PRINT DRONE: \n");<br>
<br>
Suggestion: Change this code to the following:<br>
fprintf(stderr, "PRINT DRONE HERE:\n”);<br>
for (u_int8_t const* p = ptr; p < limit; ++p) fprintf(stderr, “%02x:", *p);<br>
fprintf(stderr, “\nDONE\n”);<br>
exit(0);<br>
<br>
If you do this, you’ll see output that shows the very first RECOVER record, but none more.<br>
<br>
Send us the output that you see - between "PRINT DRONE HERE:” and “DONE”.<br>
<br>
<br>
Ross Finlayson<br>
Live Networks, Inc.<br>
<a href="http://www.live555.com/" rel="noreferrer" target="_blank">http://www.live555.com/</a><br>
<br>
<br>
-- <br>
DJI-log-discuss mailing list<br>
<a href="mailto:DJI-log-discuss@lists.live555.com" target="_blank">DJI-log-discuss@lists.live555.com</a><br>
<a href="http://ns.live555.com/mailman/listinfo/dji-log-discuss" rel="noreferrer" target="_blank">http://ns.live555.com/mailman/listinfo/dji-log-discuss</a><br>
</blockquote></div>