Forum
Please or Register to create posts and topics.

Update IQDemodulator_0 & Spectran_V6B_0 centerfreq independently via /remoteconfig

In my mission there is a Spectran v6 source block and an IQ demodulator block.

I'm trying to update their configuration via /remoteconfig endpoint

When I update the IQ demodulator, the centerfrequency of the Spectran V6 also changes, which is not my intention. Same, when I update the center frequency of the IQ demodulator, the center frequency of the Spectran V6 block also changes.

My intention is to tune the IQ demodulator and the Spectran v6 blocks independently, as it is possible in the RTSA GUI.

Req.1:

{
"request": 1001,
"config": {
"type": "group",
"name": "Block_IQDemodulator_0",
"items":[
{
"type":"group",
"name":"main",
"label":"Main",
"flags":"",
"items":[
{
"type":"float",
"name":"centerfreq",
"label":"Center Frequency",
"value":221000000
},
{
"type":"float",
"name":"samplerate",
"label":"Sample Rate",
"value":4000000
},

{
"type":"float",
"name":"spanfreq",
"label":"Span Frequency",
"value":4000000
}
]
}
]
}
}

Req.2

{
"request": 1002,
"config": {
"type": "group",
"name": "Block_Spectran_V6B_0",
"items":[
{
"type":"group",
"name":"main",
"label":"Main",
"items":[
{
"type":"float",
"name":"centerfreq",
"value":220000000
}
]
}
]
}
}

 

The receiver of the configuration is selected with the "receiverName" item:

 

{"receiverName":"Block_IQDemodulator_0",
"simpleconfig":
{"main":
{"centerfreq":2415000000}}}

 

fw_dev has reacted to this post.
fw_dev