Hello,
The jesd data link is correctly working but I want to add DATA PRBS verification.
With DATA PRBS I mean the jesd link must be working despite of the PHY PRBS.
-) in the file libBccMaint/radio_drivers/adLib/devices/adrv9025/public/src/adi_adrv9025_data_interface.c row 2410, the error combination is the following
/* Create the errorStatus. Note that there is no inverted value flag specific to sample mode */
counters->errorStatus[0] = (prbsInvalidDataFlag << 1) & (prbsErrorFlag << 2);
Comparing this line with the phy prbs one suggests that the "&" AND condition is not right: can you confirm it has to be replaced with a "|" OR ?
-) In the downlink direction (adrv9026 tx fpga rx) data prbs verification is correctly working
In the opposite direction (adrv9026 rx fpga tx) data prbs verification fails.
--) Is the function adi_adrv9025_DfrmPrbsCountReset good for both PHY PRBS and DATA PRBS counter reset?
Regards