How to configure the V6 to Raw Mode?
Quote from AdminTC on 11/06/2021, 12:13How to configure the V6 to Raw Mode? If you can provide the demo code to show how to get into raw mode of V6 and how to change the decimation, that will be very helpful.
How to configure the V6 to Raw Mode? If you can provide the demo code to show how to get into raw mode of V6 and how to change the decimation, that will be very helpful.
Quote from DevUS on 11/06/2021, 12:32A RawIQ sample will be available in the SDK from 8966 on.
The TransferRate sample can be used as a reference on how to enable the raw IQ mode, the IQReceiver sample as a reference on how to receive the IQ data.
The decimation can be controled:
if (AARTSAAPI_ConfigFind(&d, &root, &config, L"main/decimation") == AARTSAAPI_OK)
AARTSAAPI_ConfigSetString(&d, &config, L"1 / 64");
A RawIQ sample will be available in the SDK from 8966 on.
The TransferRate sample can be used as a reference on how to enable the raw IQ mode, the IQReceiver sample as a reference on how to receive the IQ data.
The decimation can be controled:
if (AARTSAAPI_ConfigFind(&d, &root, &config, L"main/decimation") == AARTSAAPI_OK)
AARTSAAPI_ConfigSetString(&d, &config, L"1 / 64");