Last active
March 4, 2023 05:37
-
-
Save kralo/8f4b072ada9afc8aebb2335cbcd13c87 to your computer and use it in GitHub Desktop.
u-blox commands for activating SFRBX/RAWX (using RTKLIB) with M8N FW 3.01
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# u-blox commands for activating SFRBX/RAWX (using RTKLIB) with M8N FW 3.01 | |
# tested on an | |
# HW UBX-M8030 00080000*60 | |
# EXT CORE 3.01 (107900)*33 | |
# ROM BASE 2.01 (75331)*19 | |
# FWVER=SPG 3.01*46 | |
# PROTVER=18.00*11 | |
# issue these commands in a terminal that supports sending HEX (e.g. ScriptCommunicator) | |
# enable RAWX | |
B5 62 06 01 03 00 02 15 01 22 70 | |
# enable SFRBX | |
B5 62 06 01 03 00 02 13 01 20 6C | |
#enable NAVSOL | |
B5 62 06 01 03 00 01 06 01 12 4F | |
#enable TIMEGPS | |
B5 62 06 01 03 00 01 20 01 2C 83 | |
# enable MEASX | |
B5 62 06 01 03 00 02 14 01 21 6E | |
# enable POSLLH | |
B5 62 06 01 03 00 01 02 01 0E 47 | |
# enable NAV-DOP | |
B5 62 06 01 03 00 01 04 01 10 4b | |
# enable SFRB, doesnt work (no output from device) | |
# B5 62 06 01 03 00 02 11 01 1E 68 | |
# enable SMEAS, doesnt work (no output from device) | |
# B5 62 06 01 03 00 0D 13 01 2B 8D | |
#combined for sending | |
B5 62 06 01 03 00 02 15 01 22 70 | |
B5 62 06 01 03 00 02 13 01 20 6C | |
B5 62 06 01 03 00 01 06 01 12 4F | |
B5 62 06 01 03 00 01 20 01 2C 83 | |
B5 62 06 01 03 00 02 14 01 21 6E |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# these commands disable (all) NMEA messages (tested from u-center GUI) | |
# issue these commands in a terminal that supports sending HEX (e.g. ScriptCommunicator) | |
B5 62 06 01 03 00 F0 0A 00 04 23 | |
B5 62 06 01 03 00 F0 09 00 03 21 | |
B5 62 06 01 03 00 F0 00 00 FA 0F | |
B5 62 06 01 03 00 F0 01 00 FB 11 | |
B5 62 06 01 03 00 F0 0D 00 07 29 | |
B5 62 06 01 03 00 F0 06 00 00 1B | |
B5 62 06 01 03 00 F0 02 00 FC 13 | |
B5 62 06 01 03 00 F0 07 00 01 1D | |
B5 62 06 01 03 00 F0 03 00 FD 15 | |
B5 62 06 01 03 00 F0 04 00 FE 17 | |
B5 62 06 01 03 00 F0 0F 00 09 2D | |
B5 62 06 01 03 00 F0 05 00 FF 19 | |
B5 62 06 01 03 00 F0 08 00 02 1F | |
B5 62 06 01 03 00 F1 00 00 FB 12 | |
B5 62 06 01 03 00 F1 01 00 FC 14 | |
B5 62 06 01 03 00 F1 03 00 FE 18 | |
B5 62 06 01 03 00 F1 04 00 FF 1A | |
B5 62 06 01 03 00 F1 05 00 00 1C | |
B5 62 06 01 03 00 F1 06 00 01 1E | |
B5 62 06 01 03 00 F0 00 00 FA 0F | |
B5 62 06 01 03 00 F0 01 00 FB 11 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment