I need to take 2 char strings (6 character date) (and (8 charachter operatror id) convert to uin32 to send over a bus to store by another processor. That processor later sends them back as uint32 and I need to conver back to char strings.
Two files need access to these 2 so I declare & initialize in one c file then declare extern in the other. The taIn and taOut are arrays of 32 bit words. and my code is
[taMsgOut->data[6] = (Uint32)Test_Date;
taMsgOut->data[7] = (Uint32)Operator_ID;
Test_Date[0] = (char)taMsgIn->data[6];
Operator_ID[0] = (char)taMsgIn->data[7]; ]