Expand Minimize Picture-in-picture Power Device Status Voice Recognition Skip Back Skip Forward Minus Plus Play Search
Internet Explorer alert
This browser is not recommended for use with smartdevicelink.com, and may not function properly. Upgrade to a different browser to guarantee support of all features.
close alert
To Top Created with Sketch. To Top
To Bottom Created with Sketch. To Bottom
HMI Documentation
IsReady

IsReady

Type
Function
Sender
SDL
Purpose
Request ready state of Navigation Module

This request comes from SDL after the HMI has confirmed its readiness via OnReady.

Note

If the Navigation component responds as unavailable, SDL will not send further requests to this component.

Must
  1. Check if the Navigation component is present and ready to communicate with SDL.
  2. Respond correspondingly to the results of this check.

Request

Parameters

This RPC has no additional parameter requirements

Response

Parameters

Name Type Mandatory Additional
available Boolean true

Sequence Diagrams

JSON Message Examples

Example Request

{
  "id" : 27,
  "jsonrpc" : "2.0",
  "method" : "Navigation.IsReady"
}

Example Response

{
  "id" : 27,
  "jsonrpc" : "2.0",
  "result" :
  {
    "available" : true,
    "code" : 0,
    "method" : "Navigation.IsReady"
  }
}

Example Error

{
  "id" : 27,
  "jsonrpc" : "2.0",
  "error" :
  {
    "code" : 22,
    "message" : "An unknown error has occurred",
    "data" :
    {
      "method" : "Navigation.IsReady"
    }
  }
}
View on GitHub.com
Previous Section Next Section