sbp-2.3.15: SwiftNav's SBP Library

CopyrightCopyright (C) 2015-2018 Swift Navigation Inc.
LicenseLGPL-3
MaintainerSwift Navigation <dev@swiftnav.com>
Stabilityexperimental
Portabilityportable Messages for reading, writing, and discovering device settings. Settings
Safe HaskellNone
LanguageHaskell2010

SwiftNav.SBP.Settings

Description

with a "string" field have multiple values in this field delimited with a null character (the c style null terminator). For instance, when querying the firmware_version setting in the system_info section, the following array of characters needs to be sent for the string field in MSG_SETTINGS_READ: "system_info0firmware_version0", where the delimiting null characters are specified with the escape sequence '\0' and all quotation marks should be omitted. In the message descriptions below, the generic strings SECTION_SETTING and SETTING are used to refer to the two strings that comprise the identifier of an individual setting.In firmware_version example above, SECTION_SETTING is the system_info, and the SETTING portion is firmware_version. See the "Software Settings Manual" on support.swiftnav.com for detailed documentation about all settings and sections available for each Swift firmware version. Settings manuals are available for each firmware version at the following link: https://support.swiftnav.com/customer/en/portal/articles/2628580-piksi- multi-specifications#settings. The latest settings document is also available at the following link: http://swiftnav.com/latest/piksi-multi- settings . See lastly https://github.com/swift- navpiksi_toolsblobmasterpiksi_tools/settings.py , the open source python command line utility for reading, writing, and saving settings in the piksi_tools repository on github as a helpful reference and example.

Synopsis

Documentation

data MsgSettingsWrite Source #

SBP class for message MSG_SETTINGS_WRITE (0x00A0).

The setting message writes the device configuration for a particular setting via A NULL-terminated and NULL-delimited string with contents SECTION_SETTING\0SETTING\0VALUE\0 where the '\0' escape sequence denotes the NULL character and where quotation marks are omitted. A device will only process to this message when it is received from sender ID 0x42. An example string that could be sent to a device is "solution0soln_freq0100".

Constructors

MsgSettingsWrite 

Fields

data MsgSettingsWriteResp Source #

SBP class for message MSG_SETTINGS_WRITE_RESP (0x00AF).

Return the status of a write request with the new value of the setting. If the requested value is rejected, the current value will be returned. The string field is a NULL-terminated and NULL-delimited string with contents SECTION_SETTING\0SETTING\0VALUE\0 where the '\0' escape sequence denotes the NULL character and where quotation marks are omitted. An example string that could be sent from device is "solution0soln_freq0100".

Constructors

MsgSettingsWriteResp 

Fields

data MsgSettingsReadReq Source #

SBP class for message MSG_SETTINGS_READ_REQ (0x00A4).

The setting message that reads the device configuration. The string field is a NULL-terminated and NULL-delimited string with contents SECTION_SETTING\0SETTING\0 where the '\0' escape sequence denotes the NULL character and where quotation marks are omitted. An example string that could be sent to a device is "solution0soln_freq0". A device will only respond to this message when it is received from sender ID 0x42. A device should respond with a MSG_SETTINGS_READ_RESP message (msg_id 0x00A5).

Constructors

MsgSettingsReadReq 

Fields

data MsgSettingsReadResp Source #

SBP class for message MSG_SETTINGS_READ_RESP (0x00A5).

The setting message wich which the device responds after a MSG_SETTING_READ_REQ is sent to device. The string field is a NULL- terminated and NULL-delimited string with contents SECTION_SETTING\0SETTING\0VALUE\0 where the '\0' escape sequence denotes the NULL character and where quotation marks are omitted. An example string that could be sent from device is "solution0soln_freq0100".

Constructors

MsgSettingsReadResp 

Fields

data MsgSettingsReadByIndexReq Source #

SBP class for message MSG_SETTINGS_READ_BY_INDEX_REQ (0x00A2).

The settings message for iterating through the settings values. A device will respond to this message with a MSG_SETTINGS_READ_BY_INDEX_RESP.

Constructors

MsgSettingsReadByIndexReq 

Fields

data MsgSettingsReadByIndexResp Source #

SBP class for message MSG_SETTINGS_READ_BY_INDEX_RESP (0x00A7).

The settings message that reports the value of a setting at an index. In the string field, it reports NULL-terminated and delimited string with contents SECTION_SETTING\0SETTING\0VALUE\0FORMAT_TYPE\0. where the '\0' escape sequence denotes the NULL character and where quotation marks are omitted. The FORMAT_TYPE field is optional and denotes possible string values of the setting as a hint to the user. If included, the format type portion of the string has the format "enum:value1,value2,value3". An example string that could be sent from the device is "simulator0enabled0True0enum:True,False0"

Constructors

MsgSettingsReadByIndexResp 

Fields

data MsgSettingsReadByIndexDone Source #

SBP class for message MSG_SETTINGS_READ_BY_INDEX_DONE (0x00A6).

The settings message for indicating end of the settings values.

data MsgSettingsRegister Source #

SBP class for message MSG_SETTINGS_REGISTER (0x00AE).

This message registers the presence and default value of a setting with a settings daemon. The host should reply with MSG_SETTINGS_WRITE for this setting to set the initial value.

Constructors

MsgSettingsRegister 

Fields