This is my first post so I apologise if this is not formatted properly. I am currently working on a project with the SAM M8Q receiver. In the data sheet it says that SBAS can be enabled and I want to know a few things about the structure of how this works.
Can SBAS be enabled on the SAM M8Q I have seen some websites that state the receiver can only do QZSS and some that say SBAS can be enabled along with Galileo and Glonass.
I tried to use the commands myGNSS.enableGNSS(true, SFE_UBLOX_GNSS_ID_SBAS); are there any other commands that I would need to include for the specific chip?
SBAS is ON by default and should definitely work for US (WAAS) and EU (EGNOS) satellites.
The satellites are however further out, and have higher data rates, which makes them more of a challenge to pull in if your antenna situation and placement is poor. Within a couple of minutes at >=35 dBHz
See UBX-CFG-GNSS and UBX-CFG-SBAS using u-Center Classic (v23.08)
You aren’t going to see SBAS satellites in GxGSA sentences. It should report a DGNSS fix type if used, and a DGPS Station# of 0000 via GxGGA
You’d perhaps want to enable UBX-NAV-SAT and observe in uCenter
High-Precision isn’t supported on this receiver, but would get you extra decimal places, and finer than 2cm reporting.
The SAM-M8Q is unlikely to be a strong performer. You’re going to need to be outside, with an unobscured view of the sky. Position performance (CEP50) is unlikely to be better than 2.5 m even with DGPS or SBAS.
clive1:
SBAS is ON by default and should definitely work for US (WAAS) and EU (EGNOS) satellites.
The satellites are however further out, and have higher data rates, which makes them more of a challenge to pull in if your antenna situation and placement is poor. Within a couple of minutes at >=35 dBHz
See UBX-CFG-GNSS and UBX-CFG-SBAS using u-Center Classic (v23.08)
You aren’t going to see SBAS satellites in GxGSA sentences. It should report a DGNSS fix type if used, and a DGPS Station# of 0000 via GxGGA
You’d perhaps want to enable UBX-NAV-SAT and observe in uCenter
High-Precision isn’t supported on this receiver, but would get you extra decimal places, and finer than 2cm reporting.
Hi Clive thanks for the response, just a quick question, I Have tried using U-centre before but to no avail. I used a I2C to COM adapter which I Bought on amazon. Is this the sort of device which should be used to interface with u - centre or is it an evaluation kit?
uCenter likely wants an Aardvark I2C adapter. I made a USB-to-I2C adapter for uBlox receivers using a RPi Pico, but this could port to most 3.3V Arduino platforms, and connects as a COM port. https://github.com/cturvey/RandomNinjaC … R_MRK2.ino
In response to your previous question (https://content.u-blox.com/sites/defaul … 619%29.pdf) [page 10] this says that D-GPS cannot be used in conjunction with SBAS. Surely then this would mean that if SBAS is enabled DGNSS will not be active and the fix type won’t show up.
Also is the function byte RTK = myGNSS.getCarrierSolutionType(); good enough to receive this fix type message?
This part isn’t going to give you carrier solutions. For that you’d need a NEO-M8P or ZED-F9P type part, being feed with RTCM3 data.
The M8 supports RTCM2 (Msgs 1,2, 3 and 9), but these would typically come from a Beacon, most of that infrastructure has been deprecated, and replaced with SBAS with it’s signals via L1-Band GPS, compared to using a Beacon Receiver. Both DGPS and SBAS are GPS ONLY, using one or the other isn’t going to be a hurdle here. If you have SBAS available, use that.
For DGNSS in a more subjective sense, you’d need to be using a NEO-M9N, or one of the SparkFun / Beitian M9 receivers, which you can feed with RTCM3 data, from either an NTRIP type source, or a ZED-F9P or zED-F9T acting as the source of your Base Station data stream.
Here, illustrating NEO-M9N DGNSS with data from a ZED-F9T
I am now working on trying to output the UBX messages to the serial port. I am using the arduino IDE with the examples provided and I have copied my code below. I am unsure as to why I cannot get it to output just the UBX messages. Can you help me? Cheers
For the M8, you’ll need to use UBX-CFG-PRT command to define supported input/output protocol(s). The GET/SET VAL methods are for Generation 9 and above receivers.