Other Parts Discussed in Thread: TEST2
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