Quote:
Originally Posted by twobob
So issues with that one... Polling doesn't look like it wants to play nice. 
It's only an example. I prefer the previous posts design in oh so many ways.
|
Code:
frames_to_deliver = frames_to_deliver > 4096 ? 4096 : frames_to_deliver;
First, do a quick re-write of that statement then re-run it.
Why?
There was a recent GCC bug fixed in the ARM arch for "wrong code generation" from that construct.
Quicker to just re-write it and re-test than run down all of the who/what/when/why of the bug.