Quote:
|
Originally Posted by Flash
Okay so those lines are in Hex I believe. I converted a section of a file to the following:
0D0000808D = 32909
0D00004A47 = 19015
0D00002E23 = 11811
0D00003835 = 14389
0D00003439 = 13369
0D00004845 = 18501
0D0000424F = 16975
0D0000303D = 12349
0D0100222E = 16785966 (?)
0D00000E03 = 3587
And the first four lines of the file convert to:
41D40B8E93 = 1104415630
1641CF0C17 = 1104088087
22A678FC = 581335292
1D1D = 7453
Still no idea. I was hoping they would be Lat/Lon coordinates. The coordinates near me should be 40.xx and 80.xx so none of these relate right off the bat.
|
8 bit microprocessors use Hex pairs 00 to FF. The most an 8 bit proc can handle is 255 decimal or FF hex or 11111111 binary. If it's pure ASCII, the only human friendly numbers are 32 to 126 decimal, everything else is control codes and stuff like that.
<CR> is Carriage Return and <FF> is Form Feed.
Converting your strings to Hex pairs and, where applicable, ASCII, it looks like...
0D0000808D = <CR>, <NUL>, <NUL>, 128, 141 =
0D00004A47 = <CR>, <NUL>, <NUL>, 74, 71 = JG
0D00002E23 = <CR>, <NUL>, <NUL>, 46, 35 = .#
0D00003835 = <CR>, <NUL>, <NUL>, 56, 53 = 85
0D00003439 = <CR>, <NUL>, <NUL>, 52, 57 = 49
0D00004845 = <CR>, <NUL>, <NUL>, 72, 69 = HE
0D0000424F = <CR>, <NUL>, <NUL>, 66, 79 = BO
0D0000303D = <CR>, <NUL>, <NUL>, 48, 61 = 0=
0D0100222E = <CR>, <Start of Header>, <NUL>, 0, 34, 46 = “.
0D00000E03 = <CR>, <NUL>, <NUL>, 14, 3 = <Shift Out>, <End of Text>
And the first four lines of the file convert to:
41D40B8E93 = 65, 212, 11, 142, 147 = A, 212, <CR>, 142, 147
1641CF0C17 = 22, 65, 207, 12, 23 = <idle>, A, 207, <FF>, <End>
22A678FC = 34, 166, 120, 252 = 4, 166, x, 252
1D1D = 29, 29 = <Group Separator>, <Group Separator>
This may not make a lot more sense, but hopefully it may help you get on the right track.
It's been 40 years since college so forgive me my errors.