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
We propose correcting the range of some parameters that are defined in both HMI_API.xml and MOBILE_API.xml but each has defferent ranges.
In current HMI_API.xml and MOBILE_API.xml, there are some parameters that are used in both xml but each has defferent ranges.
By unifying such ranges, we can provide more accurate RPC documents for SDL developers.
The target items are described in the Excel file.
e.g. The parameter ts of RPC TouchEvent, same parameter is defined both MOBILE_API.xml and HMI_API.xml, but its 'maxvalue' is defferent. Therefore modify the value of maxvalue like below
To unify the maxvalue in both xml, modify the maxvalue of ts in HMI_API.xml like below.
- <param name="ts" type="Integer" mandatory="true" array="true" minvalue="0" maxvalue="2147483647" minsize="1" maxsize="1000">+ <param name="ts" type="Integer" mandatory="true" array="true" minvalue="0" maxvalue="2000000000" minsize="1" maxsize="1000">
<description>
The time that the touch was recorded. This number can the time since the beginning of the session or something else as long as the units are in milliseconds.
The timestamp is used to determined the rate of change of position of a touch.
The application also uses the time to verify whether two touches, with different ids, are part of a single action by the user.
If there is only a single timestamp in this array, it is the same for every coordinate in the coordinates array.
</description>
</param>
The text was updated successfully, but these errors were encountered:
We propose correcting the range of some parameters that are defined in both
HMI_API.xml
andMOBILE_API.xml
but each has defferent ranges.In current
HMI_API.xml
andMOBILE_API.xml
, there are some parameters that are used in both xml but each has defferent ranges.By unifying such ranges, we can provide more accurate RPC documents for SDL developers.
The target items are described in the Excel file.
mismatch of range.xlsx
e.g. The parameter
ts
of RPCTouchEvent
, same parameter is defined bothMOBILE_API.xml
andHMI_API.xml
, but its 'maxvalue' is defferent. Therefore modify the value ofmaxvalue
like belowTo unify the
maxvalue
in both xml, modify themaxvalue
ofts
inHMI_API.xml
like below.The text was updated successfully, but these errors were encountered: