v1.0.0-rc.31

This commit is contained in:
2025-03-02 13:15:28 +01:00
parent aeabc81a4c
commit ddf4c75645
309 changed files with 8705 additions and 1421 deletions

View File

@@ -12,6 +12,7 @@ TEST_CASE("FPGA_FrameWriterTestIgnore") {
hls::stream<ap_uint<512>> integration_in;
hls::stream<ap_uint<512>> spot_finder_in;
hls::stream<ap_uint<256>> roi_calc_in;
hls::stream<ap_uint<128>> pixel_calc_in;
hls::stream<axis_completion > s_axis_completion;
hls::stream<ap_axiu<512,1,1,1> > host_memory_out;
hls::stream<axis_datamover_ctrl> datamover_out_cmd;
@@ -32,10 +33,11 @@ TEST_CASE("FPGA_FrameWriterTestIgnore") {
spot_finder_in.write(0);
for (int j = 0; j < FPGA_INTEGRATION_BIN_COUNT / 8; j++)
integration_in.write(0);
for (int j = 0; j < ADU_HISTO_BIN_COUNT / 16 + 1; j++)
for (int j = 0; j < ADU_HISTO_BIN_COUNT / 16; j++)
adu_histo_in.write(0);
for (int j = 0; j < FPGA_ROI_COUNT; j++)
roi_calc_in.write(0);
pixel_calc_in.write(0);
s_axis_completion.write(axis_completion{.frame_number = i, .last = 0});
}
@@ -50,6 +52,7 @@ TEST_CASE("FPGA_FrameWriterTestIgnore") {
integration_in,
spot_finder_in,
roi_calc_in,
pixel_calc_in,
s_axis_completion,
host_memory_out,
datamover_out_cmd,