Hi
I use the nRF connect SDK v2.0 installed with the toolchain manager and tried the distance measurement which works fine but doesn't use the high precision mode. I changed in the file 'dm.c' the function call from:
nrf_dm_calc(&report);
to:
float distance = nrf_dm_high_precision_calc(&report); report.distance_estimates.mcpd.ifft = distance;
It works after I set some linker flags but the report is empty (all values are 0) so I currently use the ifft variable as you can see to print out the distance in the callback function. Is it normal that the report is empty or is it fixed in a newer version?

