data: add USB vendor/product IDs to all configs

PP 1.2 and PPP configs were lacking this parameter. Although it's not a
problem as `eg25-manager` will then use a default value, adding them
won't harm and make them more consistent with other config files.
This commit is contained in:
Arnaud Ferraris
2022-01-04 15:29:56 +01:00
committed by Arnaud Ferraris
parent 97b1878ebc
commit 75400fb9c0
2 changed files with 8 additions and 4 deletions

View File

@@ -1,5 +1,7 @@
[manager] [manager]
monitor_udev = true monitor_udev = true
usb_vid = 0x2c7c
usb_pid = 0x0125
# Delay between setting GPIO and PWRKEY sequence, set in microseconds # Delay between setting GPIO and PWRKEY sequence, set in microseconds
poweron_delay = 100000 poweron_delay = 100000
@@ -61,9 +63,9 @@ configure = [
{ cmd = "QSCLK", value = "1" }, { cmd = "QSCLK", value = "1" },
# GNSS configuration: # GNSS configuration:
# * Enable A-GPS data upload support (XTRA) # * Enable A-GPS data upload support (XTRA)
# * Disable On-Demand-Positioning (ODP) mode # * Disable On-Demand-Positioning (ODP) mode
# to avoid running the GNSS system in the background, even when not enabled. # to avoid running the GNSS system in the background, even when not enabled.
# * Enable Dynamic Power Optimizations (DPO) mode to turn off GNSS RF radios # * Enable Dynamic Power Optimizations (DPO) mode to turn off GNSS RF radios
# when they are not in use. # when they are not in use.
# * Only enable GPS and GLONASS, disable other GNSS systems. # * Only enable GPS and GLONASS, disable other GNSS systems.
# A-GPS data upload doesn't work for Galileo anyway. # A-GPS data upload doesn't work for Galileo anyway.

View File

@@ -1,5 +1,7 @@
[manager] [manager]
monitor_udev = false monitor_udev = false
usb_vid = 0x2c7c
usb_pid = 0x0125
# Delay between setting GPIO and PWRKEY sequence, set in microseconds # Delay between setting GPIO and PWRKEY sequence, set in microseconds
poweron_delay = 100000 poweron_delay = 100000
@@ -61,9 +63,9 @@ configure = [
{ cmd = "QSCLK", value = "1" }, { cmd = "QSCLK", value = "1" },
# GNSS configuration: # GNSS configuration:
# * Enable A-GPS data upload support (XTRA) # * Enable A-GPS data upload support (XTRA)
# * Disable On-Demand-Positioning (ODP) mode # * Disable On-Demand-Positioning (ODP) mode
# to avoid running the GNSS system in the background, even when not enabled. # to avoid running the GNSS system in the background, even when not enabled.
# * Enable Dynamic Power Optimizations (DPO) mode to turn off GNSS RF radios # * Enable Dynamic Power Optimizations (DPO) mode to turn off GNSS RF radios
# when they are not in use. # when they are not in use.
# * Only enable GPS and GLONASS, disable other GNSS systems. # * Only enable GPS and GLONASS, disable other GNSS systems.
# A-GPS data upload doesn't work for Galileo anyway. # A-GPS data upload doesn't work for Galileo anyway.