How to change RTSA PRO Parameters with API?
Quote from joedalton on 12/03/2024, 09:29When I send get request to /remoteconfig, rbw and snn value do not return. when I send put request, rbw and snn value return but with different value (I send rbw : 60kHz, return 50kHz).
When I send get request to /remoteconfig, rbw and snn value do not return. when I send put request, rbw and snn value return but with different value (I send rbw : 60kHz, return 50kHz).
Quote from mm_dev on 13/03/2024, 11:59Indeed there seem to be some more issues with the Spectran V6 Sweep Zoom block and using /remoteconfig without a Remote Config block. I'll have to look into that in more detail, maybe you do actually need a Remote Config block for this.
Indeed there seem to be some more issues with the Spectran V6 Sweep Zoom block and using /remoteconfig without a Remote Config block. I'll have to look into that in more detail, maybe you do actually need a Remote Config block for this.
Quote from joedalton on 15/03/2024, 06:53OK. now I would like to change Capture Mode. I tried but I could not.
My json :
{"request": 8,"receiverName": "Block_Spectran V6 Sweep Zoom_0","config":{"type": "group","name": "config","items": [{"name": "captureMode","value": 2,"type": "enum"}]}}
Where is the my mistake ?
OK. now I would like to change Capture Mode. I tried but I could not.
My json :
{"request": 8,"receiverName": "Block_Spectran V6 Sweep Zoom_0","config":{"type": "group","name": "config","items": [{"name": "captureMode","value": 2,"type": "enum"}]}}
Where is the my mistake ?
Quote from mm_dev on 15/03/2024, 09:48Don't pass "type": "enum" when changing values. For "enum" values, you can pass either type "string" or "integer" to change them. In some cases the possible values of an enum value can change at runtime, so using indices can be problematic there.
Don't pass "type": "enum" when changing values. For "enum" values, you can pass either type "string" or "integer" to change them. In some cases the possible values of an enum value can change at runtime, so using indices can be problematic there.
Quote from joedalton on 22/03/2024, 13:25Hello, I come back. I need another question. I have a "IQ Demodulator" block. I want to change center frequency and span frequency. But I could not. Could you give a json example. and How can I find all json examples?
{"request": 0,"receiverName": "Block_IQDemodulator_5","config":{"type": "group","name": "main","items": [{"name": "centerfreq","type": "float","value": 1500000000}]}}
Hello, I come back. I need another question. I have a "IQ Demodulator" block. I want to change center frequency and span frequency. But I could not. Could you give a json example. and How can I find all json examples?
{"request": 0,"receiverName": "Block_IQDemodulator_5","config":{"type": "group","name": "main","items": [{"name": "centerfreq","type": "float","value": 1500000000}]}}
Quote from fw_dev on 24/03/2024, 13:14{ "receiverName": "Block_IQDemodulator_0", "simpleconfig": { "main": { "centerfreq": 150000000, "samplerate": 4000000, "spanfreq": 4000000 } } }
{
"receiverName": "Block_IQDemodulator_0",
"simpleconfig": {
"main": {
"centerfreq": 150000000,
"samplerate": 4000000,
"spanfreq": 4000000
}
}
}
Quote from joedalton on 25/03/2024, 07:01Thank you. I have a question about IQ Demodulator block. It's not working all frequencies with same spanfrequency. For example 900MHz work max 17MHz span (If I set 18Mhz, it's freezing) but 1100 MHz work with 38MHz. Why ?
Note : Its reason "bounds check"
Thank you. I have a question about IQ Demodulator block. It's not working all frequencies with same spanfrequency. For example 900MHz work max 17MHz span (If I set 18Mhz, it's freezing) but 1100 MHz work with 38MHz. Why ?
Note : Its reason "bounds check"
Quote from AdminTC on 25/03/2024, 08:53Please follow the forum rules and create a NEW thread for every question. Endless threads help nobody.
Please follow the forum rules and create a NEW thread for every question. Endless threads help nobody.