Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Revise 0268 Main Menu Updating #1044

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions proposals/0268-main-menu-updating.md
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,10 @@ The HMI will have to support this feature and tell Core when to request menu upd
<function name="UI.OnUpdateFile" messagetype="request">
<description>For the HMI to tell Core that a file needs to be retrieved from the app.</description>

<param name="appID" type="Integer" mandatory="true">
<description>ID of application related to this RPC.</description>
</param>

<param name="fileName" type="String" maxlength="255" mandatory="true">
<description>File reference name.</description>
</param>
Expand All @@ -100,6 +104,10 @@ The HMI will have to support this feature and tell Core when to request menu upd
<function name="UI.OnUpdateSubMenu" messagetype="request">
<description>For the HMI to tell Core that a submenu needs updating</description>

<param name="appID" type="Integer" mandatory="true">
<description>ID of application related to this RPC.</description>
</param>

<param name="menuID" type="Integer" minvalue="0" maxvalue="2000000000" mandatory="true">
<description>This menuID must match a menuID in the current menu structure</description>
</param>
Expand Down