This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
Hi,
I think the demo project with the safety library 2.4.0 is not working correct.
In code Line 1936 "for(i = 0;i < (sizeof(all2portmemories));i++)" the size is not calculated correctly because "all2portmemories" is defined as 64bit. I think it should be
for(i = 0;i < (sizeof(all2portmemories) / sizeof(uint64);i++)
Than it is working.
Best regards
Lars