I have recently started using the Guide Test Tool to verify some of my Plus+1 code, and have encountered an issue.
I use the repeat until loop for calculating CRC on variable lenght CAN messages (combined from multiple messages) and to extract numbers from ASCII from the same messages.
When trying to make an end to end testing, putting in CAN messages, and verifying the output from the code, it will always fail on the repeat-until loop. (It does work in the actual HW)
As far as I can see it exits on the first iteration with an error, my suspicion from looking at the C code output earlier is that the check for exceeding the loop time is the culprit here.
Is there any setting that I can change to make it run through several loops in the test tool without failing?
Martin