summaryrefslogtreecommitdiff
path: root/man/ubxtool.xml
Commit message (Collapse)AuthorAgeFilesLines
* ubxtool/zerk: Makes PySerial a "soft" dependency.Fred Wright2019-03-271-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | This allows the absence of the PySerial ('serial') module, as long as the -f option is not used. This not only avoids the PySerial dependency for informational options like -h and -V, but also allows full functionality in the "via gpsd" mode. The 'gps_io' class was taking the 'serial' module (mistakenly referred to as a class as an init argument, but wasn't making any use of that flexibility. Since fully supporting that would complicate the error message, it's simply removed instead. The zerk changes are untested, due to the lack of appropriate hardware. However, they are identical to the changes in the corresponding code in ubxtool, which is tested. The manpages are updated to mention the pyserial dependency for -f. The install of ubxtool and zerk is no longer conditional on PySerial. TESTED: Tested ubxtool with PySerial 2.7, 3.0, 3.4, and none at all, verifying that -f works with all three versions, and other modes work without. Also tested with Python 3.4-3.7 (PySerial 3.4 only).
* ubxtool: Reworks -c option so that it's usable.Fred Wright2019-03-271-3/+3
| | | | | | | | | | | | | It appears that the -c code was more or less inherited from zerk and essentially useless for the UBX message format. This reworks it so that the argument is a comma-separated list of hex bytes giving the class, ID, and any payload. The header, length, and checksum are added automatically, making it reasonably convenient to specify arbitrary commands. The only limitation is the need to specify multibyte quantities as individual bytes. TESTED: Tested on LEA-6S, LEA-M8F, LEA-M8T, and LEA-M8N
* ubxtool: Adds interface option for UBX-CFG-PRT.Fred Wright2019-03-271-0/+8
| | | | | | | | | | | | | | The UBX-CFG-PRT command can specify any port, though it defaults to the current port. This option allows the port ID to be specified, either as a name or as an integer. At present, it only affects the PRT preset, though it could be used for other port-related commands in the future. Note that the baud rate is only applicable to the UART port, so there's no point in applying this to the -S option. TESTED: Tested on LEA-6S, LEA-M8F, LEA-M8T, and LEA-M8N
* ubxtool: Adds NAVX5 and SBAS poll commands.Fred Wright2019-03-271-0/+12
| | | | | TESTED: Tested on LEA-6S, LEA-M8F, LEA-M8T, and LEA-M8N
* ubxtool: Fixes some decode bugs and some text.Fred Wright2019-03-271-2/+26
| | | | | | | | | | | | | | | | | | | Some decodes weren't allowing the zero-length poll case. The NAVX5 decode was overwriting part of the result. The USB decode was completely broken. The TP5 decode was completely broken. A few comments were obviously wrong. A couple of manpage lines had a typo and an omission. A few -p items were missing from the manpage. TESTED: Tested on LEA-6S, LEA-M8F, LEA-M8T, and LEA-M8N
* ubxtool: fix some typos in docuDenis OSTERLAND2019-01-031-10/+3
| | | | | | | Add missing chars, remove duplicate ':' and duplicate VERBOSITY entry. Signed-off-by: Denis Osterland <Denis.Osterland@diehl.com> Signed-off-by: Gary E. Miller <gem@rellim.com>
* man: Move man pages, source and result, into main/Gary E. Miller2018-11-191-0/+458
part of cleaning up the root directory.