I’m using RTK Portable Bluetooth kit and I’m trying to enable NMEA messages using a Bluetooth terminal but the receiver doesn’t reply
For instance, this command
b5 62 06 8a 0e 00 00 01 00 00 ac 00 91 20 01 bb 00 91 20 01 6a 44
Could anyone send me a valid basic command list to test the connection?
Using the u-center 22.07, I configured UART2 port with Protocol in / out UBX, is this the right way? Baudrate is 38400, I didn’t change this value
With this configuration, should the receiver reply with ACK to the above command?
Yes if you have already 1.32 firmware on the zed-f9p.
I have been doings some tests and a simple command such as b562068a090000010000bc0091200108d1 for enabling GGA on UART2 is not working,
Any suggestion?
UART2 IN PROT is UBX and RTCM3X
The command works if it is sent on UART1 (to enable output on UART2)
I just tested the setup and works for me. Check:
1. You are using correct baudrate
2. The binary command is OK, try another more basic command, it’s easier to start with NMEA commands
3. That after enabling UBX on UART2 you are storing this info in flash (ubx-cfg-cfg)
Please login or Register to submit your answer
replied 4 months ago
This looks to enable RMC and GGA on UART1, and would secondarily depend on CFG-UART1OUTPROT-NMEA
I didn’t check the checksum, if that’s incorrect the receiver will ignore the packet.
Keys and values are described in the Interface Specification document.
The receiver defaults are probably for these to be enabled, but scripts can alter that. Layer 1 is BBR, perhaps use Layer 2 (FLASH) as the boards don’t have a battery/independent supply.
replied 4 months ago
I unpacked some of the configuration scripts here for clarity
https://github.com/cturvey/RandomNinjaChef/tree/main/ArduSimpleScripts
Differences vs default
https://github.com/cturvey/RandomNinjaChef/blob/main/ArduSimpleScripts/simpleRTK2B_FW113_Bluetooth-02_gen9cfg.txt
replied 4 months ago
Thanks for your answers, I’ll check everything.