Closed jnschnkr closed 4 months ago
The Generation 6 devices (2019) have been End-of-Life for many years, it's probably unrealistic to expect support now and moving forward. UBXLIB might be overkill if you're just skimming NMEA/UBX for a GPS Only receiver.
UBX-NAV-PVT and UBX-NAV-SAT not supported by the firmwares, as I recall. No GALILEO support GLONASS as alternative with NEO-6N, single RF down converter on front-end
Hi, and thanks for posting. I'm afraid Clive is correct: you'll see from u_errror_common.h that code -24 means U_ERROR_COMMON_UNKNOWN_MODULE_TYPE; ubxlib
support for GNSS modules begins with the M8 series, the M6 GNSS module doesn't support/understand most of the UBX
messages that ubxlib
will send.
Sorry!
Thanks for your help anyways. At least, I know now that it's not supported and that I don't need to try any longer.
I have a NEO-6M module and want to connect it with an ESP32S3 board. I managed to get the position with the nmea_parser example inside the ESP-IDF but wanted to use the ubxlib now. My code is mostly copied from the gnss example. I've tried everything I can find but I'm unable to make it work and couldn't find more information on the errors I get.
Using
U_GNSS_MODULE_TYPE_ANY
I get returnCode -24 with the following output:When opening the device and with
U_GNSS_MODULE_TYPE_M8
I get returnCode -8.Configurations
U_GNSS_MODULE_TYPE_M9
andU_GNSS_MODULE_TYPE_M10
allow me to open the device with returnCode 0 but I get returnCode -1025 when starting the stream. The full output is as follows:Thanks for any inputs on how I could solve my problem.