summaryrefslogtreecommitdiff
path: root/shared-bindings/gnss/SatelliteSystem.c
diff options
context:
space:
mode:
authorDan Halbert <halbert@halwitz.org>2020-07-28 14:15:02 -0400
committerDan Halbert <halbert@halwitz.org>2020-07-28 14:15:02 -0400
commitaa97ea25016c60edf688b51f6495f8fbd740cc8e (patch)
treef5b24b64a8f55f0e940e2aabb947e2825729c6e9 /shared-bindings/gnss/SatelliteSystem.c
parente5e132a36436aa5aa0a6124b28edd44536fc38c7 (diff)
parent9fc7118861a118b9e0a7e37b6bc902654ee11401 (diff)
Merge remote-tracking branch 'adafruit/main' into blm_badge
Diffstat (limited to 'shared-bindings/gnss/SatelliteSystem.c')
-rw-r--r--shared-bindings/gnss/SatelliteSystem.c30
1 files changed, 10 insertions, 20 deletions
diff --git a/shared-bindings/gnss/SatelliteSystem.c b/shared-bindings/gnss/SatelliteSystem.c
index 951c5a0e8..7d66727b8 100644
--- a/shared-bindings/gnss/SatelliteSystem.c
+++ b/shared-bindings/gnss/SatelliteSystem.c
@@ -10,30 +10,20 @@
//| def __init__(self) -> None:
//| """Enum-like class to define the satellite system type."""
//|
-//| GPS: SatelliteSystem = ...
-//| """Global Positioning System.
+//| GPS: SatelliteSystem
+//| """Global Positioning System."""
//|
-//| :type gnss.SatelliteSystem:"""
+//| GLONASS: SatelliteSystem
+//| """GLObal NAvigation Satellite System."""
//|
-//| GLONASS: SatelliteSystem = ...
-//| """GLObal NAvigation Satellite System.
+//| SBAS: SatelliteSystem
+//| """Satellite Based Augmentation System."""
//|
-//| :type gnss.SatelliteSystem:"""
+//| QZSS_L1CA: SatelliteSystem
+//| """Quasi-Zenith Satellite System L1C/A."""
//|
-//| SBAS: SatelliteSystem = ...
-//| """Satellite Based Augmentation System.
-//|
-//| :type gnss.SatelliteSystem:"""
-//|
-//| QZSS_L1CA: SatelliteSystem = ...
-//| """Quasi-Zenith Satellite System L1C/A.
-//|
-//| :type gnss.SatelliteSystem:"""
-//|
-//| QZSS_L1S: SatelliteSystem = ...
-//| """Quasi-Zenith Satellite System L1S.
-//|
-//| :type gnss.SatelliteSystem:"""
+//| QZSS_L1S: SatelliteSystem
+//| """Quasi-Zenith Satellite System L1S."""
//|
const mp_obj_type_t gnss_satellitesystem_type;