version 1.4 compute3D模块在一帧点云数据的最后一个添加HSync

This commit is contained in:
jerryzeng 2025-11-15 23:21:23 +08:00
parent b9ae035d7e
commit a3bdcc24c9

View File

@ -78,7 +78,10 @@ void compute3D(
outData.y = (float)y;
outData.z = (float)z;
outData.value = InData.value;
outData.Sync = 0;
if(n == (WinNum-1))
outData.Sync = 0b01;
else
outData.Sync = 0;
outPt3D.write(outData);
}
}