06-28-2017 09:04 AM
Hello Guys,
Trying to index an array inside a while loop from a built array encountered a compilation error saying "Type not supported in current target". The target FPGA is PXI-7851R and the error is for the constants allocated in the built array. The attached picture shows the part of the code that makes this compilation error. I am wondering if anyone has a solution for this.
Thanks,
Solved! Go to Solution.
06-28-2017 10:47 AM
Are you trying to use DBL data type on the FPGA? That's not supported.
SGL is supported, but has several limitations.
In general it is advised to stick to FXP (or integer) data types.
06-29-2017 11:49 AM
Thank you dan_u. I changed the data type to Int16 and the problem was solved.