Skip to content

Commit

Permalink
docs: add newly introduced GPS mode property (#5408)
Browse files Browse the repository at this point in the history
* docs: add newly introduced GPS mode property

* feat: add properties explanation
  • Loading branch information
mattdibi authored Oct 8, 2024
1 parent f364fba commit ced46d8
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions docs/gateway-configuration/network-configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -214,12 +214,22 @@ Name | Type | Description
`net.interface.<interface>.config.diversityEnabled` | Boolean | Enable the LTE diversity antenna | false
`net.interface.<interface>.config.resetTimeout` | Integer | The modem reset timeout in minutes | 5
`net.interface.<interface>.config.gpsEnabled` | Boolean | Enable the GPS device in the modem if available | false
`net.interface.<interface>.config.gpsMode` | String | Select the GPS mode to activate for the modem if available | `kuraModemGpsModeUnmanaged`
`net.interface.<interface>.config.persist` | Boolean | The persist option of the PPP daemon | true
`net.interface.<interface>.config.apn` | String | The modem Access Point Name |
`net.interface.<interface>.config.dialString` | String | The dial string used for connecting to the APN |
`net.interface.<interface>.config.holdoff` | Integer | The holdoff option of the PPP daemon (in seconds) | 1
`net.interface.<interface>.config.pppNum` | Integer | Assigned ppp interface number | 0

#### GPS Mode

The GPS mode can be set to one of the following values:

- `kuraModemGpsModeUnmanaged`: the GPS device of the modem will be setup but not directly managed, therefore freeing the serial port for other services to use. This can be used in order to perform the setup of the GPS and then have another service (like `gpsd`) parse the NMEA strings in order to extract the position informations. This is the default value.
- `kuraModemGpsModeManagedGps`: the GPS device of the modem will be setup and directly managed (typically by ModemManager) therefore the serial port won't be available for other services to use.

For older versions compatibility, if the `net.interface.<interface>.config.gpsMode` property is not set, the GPS mode will be automatically set to the `kuraModemGpsModeUnmanaged` equivalent.

### VLAN properties

Name | Type | Description | Default value
Expand Down

0 comments on commit ced46d8

Please sign in to comment.