<div dir="ltr"><div>Hi Ross,</div><div><br></div><div>I've read the guide on the website, it was great and got me started, i've compiled the program and parsed files and i can see the suggestion for updating the output to whatever format i'm chasing. I'm still analysing the output at the moment.<br></div><div><br></div><div>I've also been going through the mailing list archive to get up to speed.</div><div><br></div><div>Thanks for the help, i'll start there and might have some follow up questions.</div><div><br></div><div>Thank you!<br></div></div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Sat, Jul 25, 2020 at 3:57 PM 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 25, 2020, at 5:41 PM, big dog <<a href="mailto:ifusereqtrue@gmail.com" target="_blank">ifusereqtrue@gmail.com</a>> wrote:<br>
> <br>
> Hi,<br>
> <br>
> New comer, first of all thank you for all the good work, very impressive, i am hoping to help if i can but would like some pointers.<br>
> <br>
> How do i go about parsing a file using the program and analysing any gaps?<br>
<br>
First, I assume that you have read the section titled "The "djiparsetxt” application” on our web site:<br>
        <a href="http://djilogs.live555.com/" rel="noreferrer" target="_blank">http://djilogs.live555.com/</a><br>
This tells you how to build the “djiparsetxt” applicaton, and, most importantly, what skills you need to have to do so.<br>
<br>
<br>
> Can the program print out a hex code or something that i can convert and then guess the value with my actual data?<br>
<br>
No, but you could modify the code of the appropriate “parseRecord_*” function to do this.  E.g., add something like the following to the very start of whatever "parseRecord_*” function you’re interested in:<br>
        for (u_int8_t const* p = ptr; p < limit; ++p) fprintf(stderr, “:%02x”, *p);<br>
        fprintf(stderr, “\n”);<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>