I swear I used to know how to do this ... so I have this array:
BYTE bcdData[6];
and a function that returns it:
BYTE * BCD::GetBcdData()
{
return bcdData;
}
and I have this other array in another class:
BYTE tpIdByte[2];
And what I am trying to is take the values from bcdData array and place them in tpIDByte array. And I am running into a total blank on how to do it...
Thanks for the help.