Copying Structures

04 Sep 2011

I have the following code:

struct outparms { uint8_t DigitalOut[16]; uint16_t AnalogOut[24]; uint8_t Sound[6]; uint8_t DVM[4]; }; 74 bytes total

struct outparms OutData, LastOutData;

LastOutData = OutData;

.......... and the copy to LastOutData does not work ???