-
Notifications
You must be signed in to change notification settings - Fork 481
Adding Multimon-NG support #97
Comments
Well, the secondary demodulator gets the I/Q data after downconversion and filtering (the BPF you set on the frequency scale). This means that you need to add the FM demodulator to the secondary chain as well (e.g. |
Ok, I've mixed in the wrong terminology. The FLEX/POCSAG pager signals only need to be NFM demodulated, and the multimon tool then decodes the messages. It should not need to be down converted. The pager traffic I've seen is in the 900MHz range. |
You need a downconversion if you want receive a signal which is not in the center of the waterfall diagram. You can find the block diagram of the channelizer in my BSc thesis paper. |
Yes, I use named pipes, and also anonymous pipes, and sockets to build these chains. Somewhere in the BSc thesis you can find a block diagram that shows how various components of the system connect together. (The MSc thesis is only linked from my blog post by now, so I'm also putting it here so that you can find it easily.) |
Okay, so conceivably, I should be able to create a pipe for raw IQ data (or for NFM demoded data, in this case), and use that as an input to some other RTL software. Then, create another pipe to pass the data back to the OpenWebRx web interface (to the text box that comes up for the digital modes). |
Yes, it is possible. Another similar tool is |
Multimon-ng decodes pager message traffic after the signal is fm demodulated.
How much trouble would it be to add this as a feature?
Edit: It could be an option similar to the DIG-BPSK mode, and could probably use the same text window to display output.
It would require the multimon-ng dependency, an fm demoded signal passed to multimon-ng, and that output passed to the text box.
Edit: Trying to figure out the code flow, but I think I get it.
The primary mod parameter, "mod", would be the already implemented NFM. Then, with a flow similar to the digimodes, there would need to be a "secondary_mod" and "cfg.multimon_enable" that redirects the data through the multimon-ng tools.
The text was updated successfully, but these errors were encountered: