2021-03-17 05:51 AM
The VL53L3CX API‘s example code use 12KB of RAM, which makes it impossible for me to try to use the program with a smaller RAM MPU.The example for L1X,L0 are not the same, they only use about 2KB of RAM.I would like to know if it is necessary to use such a large amount of RAM to use the VL53L3CX API or if this is a software bug.
Thank you.
Solved! Go to Solution.
2021-08-19 11:24 AM
It's not a bug, but a different way of working. The L3 uses histograms. But the sensor is too small to process the histograms. So the raw data is uploaded to your MCU and all the math is done there. And unfortuately that's why that stucture is so large.
Sorry about that.
2021-08-19 11:24 AM
It's not a bug, but a different way of working. The L3 uses histograms. But the sensor is too small to process the histograms. So the raw data is uploaded to your MCU and all the math is done there. And unfortuately that's why that stucture is so large.
Sorry about that.