Skip to content

Commit

Permalink
Merge pull request #353 from smartdevicelink/develop
Browse files Browse the repository at this point in the history
Release 5.3.0
  • Loading branch information
iCollin authored Apr 29, 2020
2 parents cd3da85 + 7a7e6ac commit 8b978df
Show file tree
Hide file tree
Showing 48 changed files with 2,247 additions and 1,376 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
.idea
.idea
web_engine/*
2 changes: 1 addition & 1 deletion .gitmodules
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
[submodule "python_websocket"]
path = python_websocket
url = https://github.com/Pithikos/python-websocket-server.git
url = https://github.com/smartdevicelink/python-websocket-server.git
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (c) 2017 - 2018 SmartDeviceLink Consortium, Inc.
Copyright (c) 2017 - 2020 SmartDeviceLink Consortium, Inc.
All rights reserved.

Redistribution and use in source and binary forms, with or without
Expand Down
20 changes: 18 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# SDL HMI

HTML5 based utility to see how the SDL works. It connects via WebSocket to [SDLCore](https://github.com/LuxoftSDL/sdl_core)
HTML5 based utility to see how the SDL works. It connects via WebSocket to [SDL Core](https://github.com/smartdevicelink/sdl_core)

# Getting Started
A quick guide to installing, configuring, and running HMI.
Expand All @@ -15,8 +15,24 @@ In order to simulate UNIX signals used by the LOW_VOLTAGE feature, some addition
2. run the HMI normally
3. open the `Exit Application` menu, choose a signal from the menu and press `Send signal`

## PTU With vehicle modem
In order to get policy table updates using the vehicle modem, some additional setup is required

1. Run `deploy_server.sh`
2. Run the HMI normally
3. Click the `System Request` button
4. Select the `PTU using in-vehicle modem` checkbox to enable the feature

## A quick note about dependencies
All dependencies are installed after the SDL Core is successfully installed.
This project interacts with [SDL Core](https://github.com/smartdevicelink/sdl_core).

To initialize the git submodules in this project after cloning, run the following commands:
```
cd sdl_hmi
git submodule init
git submodule update
```
Alternatively, you can clone this repository with the --recurse-submodules flag.

## Note
SDL HMI utility is only for acquaintance with the SDL project.
Expand Down
1 change: 1 addition & 0 deletions app/AppViews.js
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,7 @@ SDL.AppViews = Em.ContainerView.extend(
SDL.ExitApp,
SDL.PrimaryDevice,
SDL.SystemRequest,
SDL.RunWebEngineAppView,
SDL.SendMessage,
SDL.AddWidgetPopUp,
'phoneCall'
Expand Down
Loading

0 comments on commit 8b978df

Please sign in to comment.