I get the same histogram data every time on VL53l3cx
As shown below, the first line is the distance and the rest are histogram data whci I think is same and not correct?
103
-4652409,-2097499426,1344930034,1327221713,525211626,33064954,-17059034,235676156,1093868795,138478570,-1947005701,2044266306,-979944,-1949171152,-370016190,-918125440,-1313692902,250674939,1125191931,138674666,-1594359557,1020856133,-983015,-1596849613,
85
-4652409,-2097499426,1344930034,1327221713,525211626,33064954,-17059034,235676156,1093868795,138478570,-1947005701,2044266306,-979944,-1949171152,-370016190,-918125440,-1313692902,250674939,1125191931,138674666,-1594359557,1020856133,-983015,-1596849613,
80
-4652409,-2097499426,1344930034,1327221713,525211626,33064954,-17059034,235676156,1093868795,138478570,-1947005701,2044266306,-979944,-1949171152,-370016190,-918125440,-1313692902,250674939,1125191931,138674666,-1594359557,1020856133,-983015,-1596849613,
This is the code snippet I am using
VL53LX_GetAdditionalData(VL53L3A2_DEV_CENTER,pAdditionalData);
for (int j=0;j<24;j++){
printf("%ld,", pAdditionalData->VL53LX_p_006.bin_data[j]);
}
printf("\n");
