13 Jan
2013
13 Jan
'13
2:38 a.m.
On Sun, 13 Jan 2013 09:54:42 Jim Unroe wrote:
Hi all,
I wish I new the correct terms to use to ask this question, but I don't. I have a value that I need to read and write to a UV-5R memory location. It appears that the values for 0, 1, 2, 3 ... 14 are hex 00, 10, 20, 30 ... E0 in the image file.
Would someone get me pointed in the right direction?
Thanks, Jim
What do you need to do? If you are writing software and you need to convert 0, 1, 2, 3 ... 14 to 0x00, 0x10, 0x20, 0x30 ... 0xE0 then just multiply by 16.
0 x 16 = 0 = 0x00 1 x 16 = 16 = 0x10 2 x 16 = 32 = 0x20 3 x 16 = 48 = 0x30 . . . 14 x 16 = 224 = 0xE0
Is that what you need to do, or do I misunderstand your question?
73,
Andrew