AVR32: simple C pitfall
AVR32: simple C pitfall
Often programmers like to convert pointer to one type to pointer to another. It's a usually (and INCORRECT!) "method" to pick-up some integer from byte array. From C standard we know that pointer to one type IS NOT EQUAL to pointer to another. But programmers ignores this fact on x86 :) They will not ignore this on AVR/AVR32 architecture :)