Add debug print for bitstream bits

sw
Markus Koch 2019-06-22 17:24:26 +02:00
parent 01df956317
commit 6846aff71d
1 changed files with 7 additions and 0 deletions

View File

@ -267,6 +267,13 @@ char *fpga_cell_lut34_isp_generate_bitstream(struct fpga_cell *cell)
}
}
report(LL_DEBUG, "Bitstream result for %p:", cell);
for (i = 0; i < 48; ++i) {
report(LL_DEBUG,
" %d: %d",
i, fpga_cell_bitstream_is_set(buf, i));
}
free(sbuf);
return buf;