edu001 Regular Member
 Joined: 14/07/2014 Location: United KingdomPosts: 82 |
Posted: 01:31am 28 Jul 2014 |
Copy link to clipboard |
 Print this post |
|
Hi
I am getting close to the end of building a GPS based tracker
I Have sent a command to the uBlox GPS module on com2 using this which I think should have worked
UBX$ = "BB56206242400FFFF060300000000102700000500FA00FA0064002C0100 0000000000000000000000000016DC"
5005 FOR A=1 TO 44
5010 'DO
5020 Hax$ = MID$(UBX$, A*2, 2)
5040 PRINT #1, ; Hax$
5050 PRINT ; Hax$
5060 '
5070 'LOOP
5080 NEXT A
5090 PRINT ; "DONE UBX"
6000 RETURN
Now I need to poll com2 for the confirmation
Any Ideas |
edu001 Regular Member
 Joined: 14/07/2014 Location: United KingdomPosts: 82 |
Posted: 03:23am 28 Jul 2014 |
Copy link to clipboard |
 Print this post |
|
This is the output I get the first B is a Dummy Character
I have just printed it to confirm what is being sent
> RUN
B5
62
06
24
24
00
FF
FF
06
03
00
00
00
00
10
27
00
00
05
00
FA
00
FA
00
64
00
2C
01
00
00
00
00
00
00
00
00
00
00
00
00
00
00
16
DC
DONE UBX
$$$$EDUHABP,1,13:17:21,5232.32403,-152.685,08,146.0,25.25
$$$$EDUHABP,2,13:17:22,5232.32385,-152.685,08,145.8,25.25
$$$$EDUHABP,3,13:17:27,5232.32358,-152.685,07,145.4,25.25
$$$$EDUHABP,4,13:17:40,5232.32365,-152.685,07,145.4,25.25
>
|