You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Module function: Get positioning data fromGPS model of L76 module, including whether the module locates successfully, latitude, longitude, UTC time, positioning mode, number of satellites, number of visible satellites, azimuth angle, speed over the ground, geodetic height and so on.
10982
10978
@@ -11065,7 +11061,7 @@ total_sen_num = 3, total_sat_num = 12 # Output the total number of complete GPG
11065
11061
11066
11062
11067
11063
11068
-
##### Get the original GNSS data read
11064
+
##### Get the original GNSS data
11069
11065
11070
11066
>**gnss.getOriginalData()**
11071
11067
@@ -11336,6 +11332,165 @@ gnss.getSpeed()
11336
11332
11337
11333
11338
11334
11335
+
11336
+
11337
+
#### quecgnss - built-in GNSS
11338
+
11339
+
Note: The current only EC200UCNAA/EC200UCNLA/EC200UEUAA models support this feature.
11340
+
11341
+
##### Initialize the GNSS
11342
+
11343
+
>**import quecgnss**
11344
+
>
11345
+
>**quecgnss.init()**
11346
+
11347
+
* Function
11348
+
11349
+
Initialization of GNSS module functions.
11350
+
11351
+
* Parameter
11352
+
11353
+
None
11354
+
11355
+
* Return Value
11356
+
11357
+
Returns integer 0 on success, integer -1 on failure.
|1|int| The GNSS module is being firmware upgrade |
11379
+
|2|int| The GNSS module is positioning. In this mode, the GNSS module starts to read GNSS positioning data. The validity of the positioning data needs to be determined by parsing corresponding statements after obtaining the positioning data, for example, whether the STATUS of the GNRMC statement is A or V. A indicates that the positioning is valid, and V indicates that the positioning is invalid. |
11380
+
11381
+
11382
+
11383
+
##### Enable or disable GNSS
11384
+
11385
+
>**quecgnss.gnssEnable(opt)**
11386
+
11387
+
* Function
11388
+
11389
+
Enable or disable the GNSS module. If you use the GNSS function for the first time after power-on, you do not need to invoke this interface to enable the GNSS function. Instead, you can invoke the init() interface. The init() interface automatically enables the GNSS function during initialization.
Module function: the module provides a bare flash area and a special read-write interface for customers to store important information, and the information will not be lost after burning the firmware (burning the firmware without this function cannot be guaranteed not to be lost). Provide a storage and read interface, not a delete interface.
0 commit comments