Skip to content

Commit a89289d

Browse files
authored
Merge pull request #266 from smartdevicelink/develop
Release 8.2.0
2 parents 2ae1f0f + a3d2d09 commit a89289d

File tree

11 files changed

+236
-240
lines changed

11 files changed

+236
-240
lines changed

docs/BasicCommunication/OnAppDeactivated/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Sender
99
Purpose
1010
: Inform the application it is no longer active on the HMI
1111

12-
SDL requires this notification in order to keep the mobile application from sending RPC's related to the HMI's functionality (e.g. adding commands for <abbr title="Voice Recognition">VR</abbr>, starting an interaction with the user, speaking text via <abbr title="Text To Speech">TTS</abbr>, etc).
12+
SDL requires this notification in order to keep the mobile application from sending RPCs related to the HMI's functionality (e.g. adding commands for <abbr title="Voice Recognition">VR</abbr>, starting an interaction with the user, speaking text via <abbr title="Text To Speech">TTS</abbr>, etc).
1313

1414

1515
In the event a navigation application is in `FULL` and the HMI sends `OnAppDeactivated`, SDL must set the navigation application to `LIMITED` with the AudioStreamingState set to `AUDIBLE`, VideoStreamingState `STREAMABLE`.

docs/BasicCommunication/OnExitApplication/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Purpose
1414
1. Provide the possibility for the user to exit any of the registered applications.
1515
2. Track if an application is active or running in the background, and complies with the driver distraction rules of the system.
1616
3. Track that the transport type that corresponds to the application running. For example, navigation applications are not allowed to be run over a bluetooth connection.
17-
4. Ignore all SDL RPC's related to an application that are defined as prohibited for a specific transport type.
17+
4. Ignore all SDL RPCs related to an application that are defined as prohibited for a specific transport type.
1818
5. Track the application performance issues such as high CPU load or memory constraint warnings.
1919
6. Send `OnExitApplication` notification to SDL if an application conflicts with any of the rules above (i.e. Users requests to exit, driver distraction rules violated, navigation app connected over bluetooth, or the application has performance issues).
2020

docs/BasicCommunication/OnIgnitionCycleOver/index.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@ Send `BC.OnIgnitionCycleOver` together with `BC.OnExitAllApplications(IGNITION_O
2020
!!! note
2121

2222
1. `BC.OnIgnitionCycleOver` dependencies:
23-
* SDL expects `BC.OnIgnitionCycleOver` _only in case_ it's built with `"-DEXTENDED_POLICY: ON"` flag. _Otherwise_ SDL needs `BC.OnExitAllApplications(IGNITION_OFF)` only.
24-
* By getting `BC.OnIgnitionCycleOver`SDL increments the `"ignition_cycles_since_last_exchange"` counter in Local Policies Table
25-
* Once the value of `"ignition_cycles_since_last_exchange"` gets equal to the value of `"exchange_after_x_ignition_cycles"`, SDL triggers a Policy Table Update
23+
* SDL expects `BC.OnIgnitionCycleOver` _only in case_ policies are enabled. _Otherwise_ SDL only needs `BC.OnExitAllApplications(IGNITION_OFF)`.
24+
2. By getting `BC.OnIgnitionCycleOver` SDL increments the `"ignition_cycles_since_last_exchange"` counter in Local Policies Table
25+
3. Once the value of `"ignition_cycles_since_last_exchange"` gets equal to the value of `"exchange_after_x_ignition_cycles"`, SDL triggers a Policy Table Update
2626

2727
!!!
2828

docs/BasicCommunication/OnSystemCapabilityUpdated/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Purpose
1717
4. If the application changes template to `WEB_VIEW`, HMI should send OnSystemCapabilityUpdated with the following `textFields` restrictions in `WindowCapability`:
1818
* `menuName` and `templateTitle` should be included, if they are visible on HMI.
1919
* `mainField1-4`, `statusBar` and `mediaTrack` should not be included if OEM implemented the `WEB_VIEW` template without these text fields.
20-
* `availabletemplates`, `buttonCapabilities` and `imageTypeSupported` should reflect the general capabilities of the window/system.
20+
* `templatesAvailable`, `buttonCapabilities` and `imageTypeSupported` should reflect the general capabilities of the window/system.
2121
5. HMI sends OnSystemCapabilityUpdated(VIDEO_STREAMING) notification to notify a subscribed mobile application that video streaming resolution has switched.
2222

2323
!!! NOTE

docs/BasicCommunication/PolicyUpdate/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,12 @@ Sender
99
Purpose
1010
: Inform HMI about the Policy Table Update (PTU) mechanism is triggered on SDL
1111

12-
In case SDL is built with **"-DEXTENDED_POLICY: HTTP" flag**, SDL supports PolicyTableUpdate flow **without HMI-related logic**.
12+
In case SDL is built with **"-DEXTENDED_POLICY=HTTP" flag**, SDL supports PolicyTableUpdate flow **without HMI-related logic**.
1313

1414
### Request
1515

1616
``BC.PolicyUpdate`` represents SDL-generated request to start the PTU sequence.
17-
In case SDL is built with **"-DEXTENDED_POLICY: PROPRIETARY"** or **"-DEXTENDED_POLICY: EXTERNAL_PROPRIETARY"** flag and PolicyTableUpdate is required, SDL internally creates PT snapshot and sends BC.PolicyUpdate(path_to_PTS) to HMI to start PTU sequence.
17+
In case SDL is built with **"-DEXTENDED_POLICY=PROPRIETARY"** or **"-DEXTENDED_POLICY=EXTERNAL_PROPRIETARY"** flag and PolicyTableUpdate is required, SDL internally creates PT snapshot and sends BC.PolicyUpdate(path_to_PTS) to HMI to start PTU sequence.
1818

1919

2020
!!! MUST

docs/Buttons/SubscribeButton/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ The request may come for the application being whatever active or in background
1818
During Resumption SDL should restore all button subscriptions for application and send required `SubscribeButton` requests to HMI.
1919

2020
!!! NOTE
21-
SDL transfers `Buttons.SubscibeButton(CUSTOM_BUTTON)` request from an application to HMI **only if** `CUSTOM_BUTTON` is supported by HMI (`Buttons[capabilities]` section of `hmi_capabilities.json`).
21+
SDL transfers `Buttons.SubscribeButton(CUSTOM_BUTTON)` request from an application to HMI **only if** `CUSTOM_BUTTON` is supported by HMI (`Buttons[capabilities]` section of `hmi_capabilities.json`).
2222
!!!
2323

2424
#### Parameters

docs/Buttons/UnsubscribeButton/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Purpose
2222
and SDL responds GENERIC_ERROR to mobile app
2323
and then HMI responds that the button has been successfully subscribed,
2424
then SDL sends `UnsubscribeButton` request to HMI, so that the application and HMI are in sync.
25-
2. When an application disconnects unexpectedely, SDL sends `UnsubscribeButton` request for all button names subscribed only by the application just disconnected.
25+
2. When an application disconnects unexpectedly, SDL sends `UnsubscribeButton` request for all button names subscribed only by the application just disconnected.
2626
!!!
2727

2828
#### Parameters

docs/Common/Enums/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -651,8 +651,8 @@
651651
|Name|Value|Description|
652652
|:---|:----|:----------|
653653
|NO_FIX|0|No <abbr title="Global Positioning System">GPS</abbr> at all|
654-
|2D|1|Longitude and lattitude|
655-
|3D|2|Longitude and lattitude and altitude|
654+
|2D|1|Longitude and latitude|
655+
|3D|2|Longitude and latitude and altitude|
656656

657657
### ImageType
658658

docs/SDL/OnReceivedPolicyUpdate/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ Purpose
1919

2020
!!! NOTE
2121
1. _SDL.OnReceivedPolicyUpdate_ dependencies:
22-
- SDL expects _SDL.OnReceivedPolicyUpdate_ _only in case_ it's built with `"-DEXTENDED_POLICY: PROPRIETARY" flag or without this flag` and `-DEXTENDED_POLICY: EXTERNAL_PROPRIETARY` flag. _Otherwise_ SDL handles the entire PTU flow by itself.
23-
- SDL will not use Updated PT until notified by HMI.
22+
- SDL expects _SDL.OnReceivedPolicyUpdate_ _only in case_ it's built with `"-DEXTENDED_POLICY=PROPRIETARY" flag or without this flag` and `-DEXTENDED_POLICY=EXTERNAL_PROPRIETARY` flag. _Otherwise_ SDL handles the entire PTU flow by itself.
23+
- SDL will not use Updated PT until notified by HMI.
2424

2525
2. After getting _OnReceivedPolicyUpdate (policyFile)_ from HMI, _SDL must_ stop timeout started by _OnSystemRequest_ and validate the Policy Table Update (policyFile) of optional, required, or omitted:
2626
- validation must reject Policy Table updates if it include fields with a status of ‘omitted.’

0 commit comments

Comments
 (0)