File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 31
31
#include "py/runtime.h"
32
32
33
33
//| class GNSS:
34
- //| """Get updated positioning information from GNSS
34
+ //| """Get updated positioning information from Global Navigation Satellite System ( GNSS)
35
35
//|
36
36
//| Usage::
37
37
//|
@@ -155,7 +155,7 @@ STATIC mp_obj_t gnss_obj_update(mp_obj_t self_in) {
155
155
MP_DEFINE_CONST_FUN_OBJ_1 (gnss_update_obj , gnss_obj_update );
156
156
157
157
//| latitude: Any = ...
158
- //| """Latitude of current position."""
158
+ //| """Latitude of current position in degrees (float) ."""
159
159
//|
160
160
STATIC mp_obj_t gnss_obj_get_latitude (mp_obj_t self_in ) {
161
161
gnss_obj_t * self = MP_OBJ_TO_PTR (self_in );
@@ -172,7 +172,7 @@ const mp_obj_property_t gnss_latitude_obj = {
172
172
};
173
173
174
174
//| longitude: Any = ...
175
- //| """Longitude of current position."""
175
+ //| """Longitude of current position in degrees (float) ."""
176
176
//|
177
177
STATIC mp_obj_t gnss_obj_get_longitude (mp_obj_t self_in ) {
178
178
gnss_obj_t * self = MP_OBJ_TO_PTR (self_in );
@@ -189,7 +189,7 @@ const mp_obj_property_t gnss_longitude_obj = {
189
189
};
190
190
191
191
//| altitude: Any = ...
192
- //| """Altitude of current position."""
192
+ //| """Altitude of current position in degrees (float) ."""
193
193
//|
194
194
STATIC mp_obj_t gnss_obj_get_altitude (mp_obj_t self_in ) {
195
195
gnss_obj_t * self = MP_OBJ_TO_PTR (self_in );
You can’t perform that action at this time.
0 commit comments