Ford application sync error

I am currently working on the ford applink sync SDK SDK for iOS, and I downloaded the application emulator (ALE) v 1.0.2 and v 2.4 and tried to run a sample application installed on iPhone 6 with it. After completing the settings of the ApplinkTester application in the device settings in accordance with the Tcp / ip settings specified for the AND application, starting with the ALE emulator on Mac.

I get the response to the connection as "true", but when I run any command in ALE, it is either "rejected" or "interrupted". There is something that I do not see. please kindly help me since I am stuck with this for more than a week.

Example application link: https://developer.ford.com/content/restricted/hello_sdl_ios.zip

ALE Help: https://developer.ford.com/content/restricted/ALE_v2.4_User_Guide(EN).pdf

ALE download link: https://developer.ford.com/content/restricted/ALE_MAC_2.4.zip

LOG: iphone6 ​​with ale v1.0.2: in the log I get a connection success, but when I send a command, it gts is either rejected or aborted.

Thanks.

+5
source share
1 answer

AppLink dev is here. Hope we can figure it out here.

As you can see, the application appears in ALE when connected via TCP / IP?

It should be noted that some RPC (commands) require a certain level of HMI. When an application first connects to ALE, it issues an application registration interface (or RAI) that lets ALE know what the application is, what the application identifier is, and what VR commands are logged in to listen. This can be done at the HMI level no higher or higher. When you actually select an application (highlighting it in ALE and then clicking OK , you should see in the logs that the HMI level changes from NONE to FULL , and then RPCs are sent (which in this case is Show, Speak and AddCommand RPC). If you look at the code for the hello_sdl_ios part, the place to view it will be onOnHMIStatus:(SDLOnHMIStatus *)notification .

Here's a link to what I mean: Hello_SDL_iOS onOnHMIStatus:

+3
source

Source: https://habr.com/ru/post/1236692/


All Articles