Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Enable NMEA Messages on USB port for u-blox receivers #3227

Merged
merged 29 commits into from
Feb 15, 2024
Merged
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
bbbc069
Portduino multiple logging levels
jp-bennett Jan 23, 2024
26d81de
Fixes based on GPSFan work
jp-bennett Jan 25, 2024
6e84142
Fix derped logic
jp-bennett Jan 25, 2024
706edcf
Correct size field for AID message
GPSFan Jan 28, 2024
99be32e
Reformat to add comments, beginning of GPS rework
GPSFan Jan 28, 2024
6c087ec
Update PM2 message for Neo-6
GPSFan Jan 29, 2024
3b5f754
Merge branch 'master' into master
GPSFan Jan 29, 2024
5757f6c
Merge branch 'master' into master
GPSFan Jan 29, 2024
7a65721
Correct ECO mode logic as ECO mode is only for Neo-6
GPSFan Jan 29, 2024
4b202c7
Cleanup ubx.h add a few more comments
GPSFan Jan 29, 2024
bfd70cb
Merge branch 'master' of https://github.com/GPSFan/firmware
GPSFan Jan 29, 2024
2456371
Merge branch 'meshtastic:master' into master
GPSFan Jan 30, 2024
98fc5b1
Merge branch 'master' into master
thebentern Jan 30, 2024
4de56d9
Merge branch 'meshtastic:master' into master
GPSFan Jan 31, 2024
475722c
Merge branch 'meshtastic:master' into master
GPSFan Jan 31, 2024
a72ba71
Merge branch 'meshtastic:master' into master
GPSFan Feb 1, 2024
1fba7fd
GPS rework, changes for M8 and stub for M10
GPSFan Feb 2, 2024
7c05a47
Merge branch 'meshtastic:master' into master
GPSFan Feb 9, 2024
e80d9ea
Merge branch 'meshtastic:master' into master
GPSFan Feb 10, 2024
fcc2fe4
Merge branch 'meshtastic:master' into master
GPSFan Feb 11, 2024
2a402ff
Merge branch 'meshtastic:master' into master
GPSFan Feb 11, 2024
0ebdaa0
Merge branch 'meshtastic:master' into master
GPSFan Feb 13, 2024
4b0c898
Add VALSET commands for u-blox M10 receivers
GPSFan Feb 13, 2024
d4e71a1
Add VALSET commands for u-blox M10 receivers
GPSFan Feb 13, 2024
1b4d69f
Add commands to init M10 receivers,
GPSFan Feb 13, 2024
8aefba3
Add wakeup source of uartrx to PMREQ_10
GPSFan Feb 13, 2024
9138750
Merge branch 'master' into master
GPSFan Feb 13, 2024
4473364
Merge branch 'meshtastic:master' into master
GPSFan Feb 14, 2024
b5ba87b
Enable NMEA messages on USB port.
GPSFan Feb 15, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/gps/ubx.h
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ const uint8_t GPS::_message_GSA[] = {
0x00, // Rate for DDC
0x01, // Rate for UART1
0x00, // Rate for UART2
0x00, // Rate for USB
0x01, // Rate for USB usefull for native linux
0x00, // Rate for SPI
0x00 // Reserved
};
Expand Down Expand Up @@ -247,7 +247,7 @@ const uint8_t GPS::_message_RMC[] = {
0x00, // Rate for DDC
0x01, // Rate for UART1
0x00, // Rate for UART2
0x00, // Rate for USB
0x01, // Rate for USB usefull for native linux
0x00, // Rate for SPI
0x00 // Reserved
};
Expand All @@ -258,7 +258,7 @@ const uint8_t GPS::_message_GGA[] = {
0x00, // Rate for DDC
0x01, // Rate for UART1
0x00, // Rate for UART2
0x00, // Rate for USB
0x01, // Rate for USB, usefull for native linux
0x00, // Rate for SPI
0x00 // Reserved
};
Expand Down
Loading