Skip to content

Commit 09b3cf9

Browse files
committed
Release v1.4.0
1 parent 8c38b89 commit 09b3cf9

36 files changed

+165
-528
lines changed

embedded/application/inc/version.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636

3737
#ifndef DEMO_VERSION
3838
#warning "No demo version provided"
39-
#define DEMO_VERSION "v1.3.1"
39+
#define DEMO_VERSION "v1.4.0"
4040
#endif
4141

4242
typedef struct

host/README.md

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -31,35 +31,34 @@ $ Lr1110Demo -h
3131
A basic usage of the Lr1110Demo is:
3232

3333
```bash
34-
Lr1110Demo -d <COM PORT> <GNSS SOLVER ASSISTANCE LOCATION> <EXACT LOCATION> <GLS TOKEN> <DAS TOKEN>
34+
Lr1110Demo -d <COM PORT> <GNSS SOLVER ASSISTANCE LOCATION> <EXACT LOCATION> <GLS TOKEN>
3535
```
3636

3737
With:
3838

3939
- `<COM PORT>`: The com port where the LR1110 EVK is connected (something like */dev/ttyACM0* on linux, *COM10* on Windows);
4040
- `<GNSS SOLVER ASSISTANCE LOCATION>`: The assistance coordinate provide to the GNSS solver when requesting a location solving. Format is `latitude,longitude,altitude` expressed in decimal degree. Note there are no space characters around the `,` to avoid breaking the command line interpretation;
4141
- `<EXACT LOCATION>`: The exact location where the scan operation occured. The format is the same as `<GNSS SOLVER ASSISTANCE LOCATION>`;
42-
- `<GLS TOKEN>`: The authentication token on GLS server;
43-
- `<DAS TOKEN>`: The authentication on DAS server.
42+
- `<GLS TOKEN>`: The authentication token on GLS server.
4443

4544
**NOTE**: If one of the location has a negative latitude, then its value on the command line will starts with a `-` character. It will therefore be interpreted as an optional argument (as for `-d <COM PORT>`). Moreover, as it will certainly refers to a non existing optional argument, command line parsing will fail with an error similar to
4645

4746
```bash
48-
$ Lr1110Demo -b COM10 -1.0000,0.0000,0 -1.0000,0.0000,0 <GLS> <DAS>
47+
$ Lr1110Demo -b COM10 -1.0000,0.0000,0 -1.0000,0.0000,0 <GLS TOKEN>
4948
usage: Lr1110Demo [-h] [-s WIFI_SERVER_BASE_URL] [-p WIFI_SERVER_PORT]
5049
[-t GNSS_SERVER_BASE_URL] [-q GNSS_SERVER_PORT]
5150
[-d DEVICE_ADDRESS] [-b DEVICE_BAUD] [-n]
5251
[-l GNSS_ASSISTED_SCAN_APPROXIMATE_LOCALIZATION] [-r]
5352
[-F FAKE_DATE] [--verbose] [--version]
5453
approximateGnssServerLocalization exactCoordinate
55-
glsAuthenticationToken dasAuthenticationToken
56-
Lr1110Demo: error: the following arguments are required: dasAuthenticationToken
54+
glsAuthenticationToken
55+
Lr1110Demo: error: the following arguments are required: glsAuthenticationToken
5756
```
5857

5958
To avoid the bad interpretation of the coordinate as optional argument, you must use the `--` separator between optional and positional arguments as follows:
6059

6160
```bash
62-
Lr1110Demo -b COM10 -- -1.0000,0.0000,0 -1.0000,0.0000,0 <GLS> <DAS>
61+
Lr1110Demo -b COM10 -- -1.0000,0.0000,0 -1.0000,0.0000,0 <GLS>
6362
```
6463

6564
See guideline 10 of [that reference](https://pubs.opengroup.org/onlinepubs/9699919799/basedefs/V1_chap12.html).

host/external_lib/lr1110_nav_message_parser_py/NavParser/__main__.py

Lines changed: 0 additions & 23 deletions
This file was deleted.

host/external_lib/lr1110_nav_message_parser_py/NavParser/navParser/__init__.py

Lines changed: 0 additions & 21 deletions
This file was deleted.

host/external_lib/lr1110_nav_message_parser_py/NavParser/navParser/core/satelliteInfo.py

Lines changed: 0 additions & 69 deletions
This file was deleted.

host/external_lib/lr1110_nav_message_parser_py/NavParser/navParser/core/satelliteResults.py

Lines changed: 0 additions & 141 deletions
This file was deleted.

host/external_lib/lr1110_nav_message_parser_py/changelog.md

Lines changed: 0 additions & 36 deletions
This file was deleted.

host/external_lib/lr1110_nav_message_parser_py/setup.py

Lines changed: 0 additions & 19 deletions
This file was deleted.

host/lr1110evk/AppConfiguration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ def __init__(self):
3131

3232
def _set_from_arguments(self, args):
3333
self.gnss_server = GeoLocServiceClientGnss.from_token_and_url_info(
34-
args.dasAuthenticationToken,
34+
args.glsAuthenticationToken,
3535
args.gnss_server_base_url,
3636
args.gnss_server_port,
3737
GeoLocServiceClientGnss.get_default_url_version(),

0 commit comments

Comments
 (0)