Binary Data from .ook #2490
-
I have an .ook file that I would like to be able to extract the binary data from, and would like to understand the process so I can apply it to other files. I have referred to this, as well as read the whole primer many times: as well as searched the repo for .ook and read the relevant .h header files. I understand that the header of the .ook format contains informational data, and that the actual data contains a number for pulse duration and another for gap duration. I assume you look at the data to figure out the type of signal? Using the as an example: I see that the pulse durations are all roughly 500, with the exception of the first pulse at 548, while the gap durations seem to vary. It kind of looks like PPM (this sample is from Nexus which is PPM) . But I was hoping for a little clarity and maybe an explanation ? Thanks for any help |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 3 replies
-
The concept you are looking for is "bit slicer". Basically you need to make some assumptions about the signal (e.g. PPM), recover the timing (e.g. each pulse is a clock) and collect resulting bits. |
Beta Was this translation helpful? Give feedback.
-
One more question. How is freq1 calculated for the .ook file? |
Beta Was this translation helpful? Give feedback.
The concept you are looking for is "bit slicer". Basically you need to make some assumptions about the signal (e.g. PPM), recover the timing (e.g. each pulse is a clock) and collect resulting bits.