When I define an enum say
typedef enum {
VALUE,
VALUE2,
VALUE3
}myEnum;
With regard to the differences between CPU and CLA where ptrs are 16 vs 32 bits, and ints are treated differently on the two processors, when I use an ENUM across the two processors, is it using an incompatible type across the processors? I seem to be observing a location mismatch when using enums across the CPU/CLA...
Can I specify that it use unsigned longs for the enums or some compatible type across the processors?
