AssistNow device registration

Introduction

The AssistNow Zero Touch provisioning is a mandatory step to use the service and it is required to:

The procedure is needed only once although it can be also repeated to:

The Chipcode is generated server-side, and it is based on the unique chip identifier of the GNSS receiver provided in input by the the receiver during the procedure

ZTP streamlines device setup, eliminating the need for manual configuration for each device. With ZTP, adding devices to your fleet is simplified, making it ideal for large-scale deployments. The Chipcode provides secure authentication, protecting your devices and data from unauthorized access.

ZTP is required both for Predictive Orbits and Live Orbits but they share the same Chipcode 


How to use ZTP 

The AssistNow ZTP is based on two elements:

The ZTP procedure can be implemented in the Host as part of the device Firmware or in the production line. It's suggested the first option because you can handle also the case of compromised credentials and automatic renewal.

Thingstream portal sign-up

If not yet done, sign-up to Thingstream platform. It's free of charge and it takes just a couple of minutes. This is a mandatory step to get access to all u-blox location services. You can also find documentation  and reference implementations to accelerate your development.

With sign-up you obtain your own domain and you can grant access to other persons for service management

Device profile creation

To get access to the AssistNow service the next step is to create a device profile that is used to identify all the devices that you want to enable to the same service. This step is done manually, just once, in the Thingstream platform . 

Select Location services > ZTP > Device profile to get access to the wizard that will guide you in the device profile creation. You will be asked to define:

At the end of the wizard you will obtain a token (alphanumeric string) to be used only for the device registration procedure (ZTP).

Note: do not share this token outside your organization.

Evaluation plan 

As reported in the user guide the number of request per device are limited to 2/day for Predictive Orbits and 10/day to Live Orbits.

The Evaluation plan allows you to increase this limit for up to 3 devices to provide up to 300 requests/month for Predictive or Live Orbits to enable performance testing

Please consider that

Monitoring the device registration

By accessing to the just created device profile you can:

Device registration

Now it's time to register the device by calling from the device firmware the ZTP REST API. The outcome of this step is:

Here below some useful information to implement the ZTP REST API

Be aware that the current example does not provide a valid token and it is reported here only as an example. Uppercase letters are not accepted.

Note: if you need help on how to poll the UBX-SEC-UNIQID and UBX-MON-VER from the receiver, go to the section at the end of this guide

The input data shall be arranged in JSON format and sent to the ZTP endpoint (the GNSS identifier , the HW and SW version are in HEX format)

{

"token": "b7xyzw18-0c60-41a1-900e-b812345653y3", 

"messages": { 

     "UBX-SEC-UNIQID": "B56227030A0002000000BDBFABCDEF12A03D", 

     "UBX-MON-VER":    "B5620A04BE00524F4D2053504720352E313020283762323032652900000000000000000030 30304130303030000046575645523D53504720352E313000000000000000000000000000000 00050524F545645523D33342E313000000000000000000000000000000000004D4F443D4556 4B4D313031430000000000000000000000000000000000004750533B474C4F3B47414C3B424 453000000000000000000000000000000534241533B515A5353000000000000000000000000 0000000000000000003A36" 

    } 

}

The API response is in the format

"chipcode": "QkRCRjU0MEYxxxxxxxDMTlBQUE0", 

"serviceUrl": "https://assistnow.services.u-blox.com/GetAssistNowData.ashx"

"allowedData": "ualm, uporb_1, uporb_3, uporb_7, uporb_14, ulorb_l1,                  ukion, usvht, utime"

and contains:

Note: at the end of the device registration procedure, you can find the just created Thing, with name equal to the GNSS receiver Unique ID. For example, if you have sent in input the following information

 "UBX-SEC-UNIQID": "B56227030A0002000000BDBFABCDEF12A03D" 

The name of the Thing will be BDBFABCDEF12.

Getting A-GNSS data

Now the device is ready to get access to AssistNow service as explained in the main guide by using the Service REST API. Please do not confuse the ZTP REST API used to register the device and retrieve the credentials with the Service REST API used to get the A-GNSS data. Be aware that also the endpoints are different. 

Chipcode renewal

It's highly suggested to design the firmware in such away that it can repeat the ZTP procedure for two reasons:

GNSS unique identifier and version

UBX-MON-VER

There 3 simple steps

UBX-SEC-UNIQID

In the same way you can get the receiver ID:

Error handling

The device firmware shall be robust enough to handle the following error codes.

The AssistNow Thing

In addition to the Chipcode, the ZTP procedure creates an AssistNow Thing in the Thingstream platform. A Thing is the logical representation of the  GNSS receiver and allows to:


Next readings