Welcome to the new FlexRadio Community! Please review the new Community Rules and other important new Community information on the Message Board.
If you are having a problem, please check the Help Center for known solutions.
Need technical support from FlexRadio? It's as simple as Creating a HelpDesk ticket.
Need technical support from FlexRadio? It's as simple as Creating a HelpDesk ticket.
Need the latest SmartSDR and Power Genius Software?
SmartSDR v3.1.12 and the SmartSDR v3.1.12 Release Notes. | SmartSDR v2.6.2 and the SmartSDR v2.6.2 Release Notes.
SmartSDR v1.12.1 and the SmartSDR v1.12.1 Release Notes. | Power Genius XL Firmware v3.4.16. | Power Genius XL Utility v2.2.10.
SmartSDR v3.1.12 and the SmartSDR v3.1.12 Release Notes. | SmartSDR v2.6.2 and the SmartSDR v2.6.2 Release Notes.
SmartSDR v1.12.1 and the SmartSDR v1.12.1 Release Notes. | Power Genius XL Firmware v3.4.16. | Power Genius XL Utility v2.2.10.
MAP 65 adaptive polarity?

Bob N7ZO
Member ✭✭
Hello all, I am considering the purchase of a Flex-6700. Now that you have DAX-IQ, is it possible to run a pair of coherent two meter (144 MHz) slices, each connected to their own antenna (one vertical and one horizontal polarity), and output both their IQ channels to a program like MAP65 to achieve adaptive polarity reception? Easy choice of either of the two antennas for transmit would be a bonus. 73,Bob, N7ZO
0
Answers
-
Today, you can have two 2m receivers tuned to the same frequency and they will be synchronous, but not coherent. In other words, the two channels will provide a constant phase separation between the two outputs that will be random, but constant and stable after each tune. Changing this to a coherent tune has always been in our playbook and not hard to do -- the chief challenge is how to represent that you want this from the GUI. We have also had this request from the HF side.
Can MAP-65 handle two synchronous channels that are not coherent or is this something we need to do sooner?
Steve0 -
Steve, MAP65 has a calibration procedure to correct for phase differences between the H and V channels, but this is not something you would want to do every time you tune. It involves finding strong EME signals and measuring them. This procedure is meant to correct for constant phase and delay differences in the feed lines, external preamps, etc.
0 -
OK, got it. I've put this on our list and I'll look into it and get back to you (here). US21110
-
It is not this simple with MAP65 and 2 IQ streams support. If you select a sound device in MAP65 menu, it will support only 1 IQ stream.
It works very good with DAXIQ single channel with 96000 settings. My EME setup for 2m includes X-pol antenna stack, with separate feed lines to H-pol and V-pol sections. I can create 2 pans with 2 DAXIQ streams, but I can see only 1 at a time - MAP65 sees only 1 DAXIQ stream.
Most of the folks use MAP65 with Linrad. It has superb filtering capabilities and allows working with many SDR receivers which support 2 channel synchronous reception. MAP65 is connected to Linrad via network, using assigned network port. This is the most common configuration.
So either Flex needs to create additional sound card interface, which will carry 2 IQ streams from 2 pans, supporting synchronous RX, or Joe needs to add second RX IQ channel to support X-pol this way.
73, Paul RN3A
0 -
It is not this simple with MAP65 and 2 IQ streams support. If you select a sound device in MAP65 menu, it will support only 1 IQ stream.
It works very good with DAXIQ single channel with 96000 settings. My EME setup for 2m includes X-pol antenna stack, with separate feed lines to H-pol and V-pol sections. I can create 2 pans with 2 DAXIQ streams, but I can see only 1 at a time - MAP65 sees only 1 DAXIQ stream.
Most of the folks use MAP65 with Linrad. It has superb filtering capabilities and allows working with many SDR receivers which support 2 channel synchronous reception. MAP65 is connected to Linrad via network, using assigned network port. This is the most common configuration.
So either Flex needs to create additional sound card interface, which will carry 2 IQ streams from 2 pans, supporting synchronous RX, or Joe needs to add second RX IQ channel to support X-pol this way.
73, Paul RN3A
0 -
I just read through the MAP65 users manual and browsed the source a bit. The best way to do digital mode programs is to always avoid sound cards if you can. The reason we all use them is that it is a common interface that everyone understands. But sound cards place the radio and the receiving software (where a digital radio is involved) in different clock domains which makes the reception more of a pain. Anyway, MAP65 already has code for receiving streaming UDP packets, in the current case for Linrad. The Linrad data structure for UDP packets is:
struct linradBuffer {
Currently the I/Q data from SmartSDR is in the VITA-49 standard format for IF data and the data structure looks like this (VITA-49 packets can have more/less fields, but this is the format we use for output):
double cfreq;
int msec;
float userfreq;
int iptr;
quint16 iblk;
qint8 nrx;
char iusb;
double d8[174];
} b;typedef struct _vita_if_data
In VITA-49, significant amounts of data can be sent very rapidly and so primarily only the samples are sent. The frequency data, etc. are all sent as part of a separate context packet which we do not emit today, but which we could easily emit.
{
uint32 header;
uint32 stream_id;
uint32 class_id_h;
uint32 class_id_l;
uint32 timestamp_int;
uint32 timestamp_frac_h;
uint32 timestamp_frac_l;
uint8 payload[MAX_IF_DATA_PAYLOAD_SIZE]; // format is int32/int32 I/Q
} vita_if_data, *VitaIFData;
Now, given that network UDP packets is the best way to move the data, there are two courses of action: 1) MAP65 could be modified to ingest VITA-49, 2) SmartSDR could be modified to emit Linrad packets. 3) The DAX control could be modified to output Linrad packets. Some thoughts about each method:
Modify MAP65 to ingest VITA-49:- MAP65 would gain a new data format, VITA-49, which is an open standard, but I doubt anyone would be willing to code a "universal VITA-49 parser" so only a subset of VITA-49 would be implemented. Some modification would likely be required for subsequent VITA-49 emitters, should there be more at a future date
- MAP65 wants to ingest data in the format float/float for I/Q. VITA-49 as emitted by SmartSDR for I/Q is in the format int32/int32 so a conversion is required. This conversion is simply a multiply by a constant (1/2^bits of dynamic range).
- SmartSDR would need to emit VITA-49 context packets for I/Q data. This is simple and we would do this
- SmartSDR would have a new data output format. I do not know the popularity or use for the Linrad formatted UDP packets for any other application
- SmartSDR would be required to reformat all I/Q packets before sending them out. This actually requires real CPU as every sample will have to receive two additional multiplies and a conversion to float. This could limit the number of streams we would allow as the additional load may not be not inconsequential. So if you go into "Linrad mode" I suspect we would have to limit the streams down to two instead of four. We would have to profile and find out for sure. The other option would be to process the multiply in the FPGA and the conversion to float in the processor which might be less load, but require more NRE.
- A new user control in the DAX control panel would be required that would stipulate which format of output would come from the radio.
- This places no new load on the radio for data conversion and keeps the output formats from the radio simple
- DAX CP only runs on Windows today so this would necessitate a Windows client for re-processing the data. Any future implementations on additional platforms for the SmartSDR client would require porting the Linrad emit code as well or foregoing this capability
- SmartSDR would effectively support an additional output data format (again I do not know the utility of this)
0 -
Hi All
Any new development to get MAP65 to work whit SmartSDR ????
73" OZ1CT Ben
0
Leave a Comment
Categories
- 15.9K All Categories
- 63 Community Topics
- 1.9K New Ideas
- 139 The Flea Market
- 5.4K Software
- 4.9K SmartSDR for Windows
- 39 SmartSDR for Maestro and M models
- 95 SmartSDR for Mac
- 144 SmartSDR for iOS
- 152 SmartSDR CAT
- 71 DAX
- 280 SmartSDR API
- 7.1K Radios and Accessories
- 5.8K FLEX-6000 Signature Series
- 562 Maestro
- 14 FlexControl
- 728 FLEX Series (Legacy) Radios
- 161 Power Genius Products
- 124 Power Genius XL Amplifier
- 14 Power Genius Utility
- 23 Tuner Genius
- 44 Shack Infrastructure
- 23 Networking
- 95 Remote Operation (SmartLink)
- 50 Contesting
- 145 Peripherals & Station Integration
- 64 Amateur Radio Interests
- 425 Third-Party Software