Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/smartdevicelink/sdl_server
The SmartDeviceLink (SDL) server handles authentication, data collection, and basic configurations for SDL connected vehicles.
https://github.com/smartdevicelink/sdl_server
Last synced: 4 days ago
JSON representation
The SmartDeviceLink (SDL) server handles authentication, data collection, and basic configurations for SDL connected vehicles.
- Host: GitHub
- URL: https://github.com/smartdevicelink/sdl_server
- Owner: smartdevicelink
- License: bsd-3-clause
- Created: 2014-10-01T20:14:47.000Z (about 10 years ago)
- Default Branch: develop
- Last Pushed: 2023-09-13T18:47:02.000Z (about 1 year ago)
- Last Synced: 2024-04-14T10:52:55.165Z (7 months ago)
- Language: JavaScript
- Homepage:
- Size: 12.8 MB
- Stars: 20
- Watchers: 14
- Forks: 23
- Open Issues: 11
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE.md
Awesome Lists containing this project
README
[![Slack Status](http://sdlslack.herokuapp.com/badge.svg)](http://slack.smartdevicelink.org)
# SmartDeviceLink (SDL)SmartDeviceLink (SDL) is a standard set of protocols and messages that connect applications on a smartphone to a vehicle head unit. This messaging enables a consumer to interact with their application using common in-vehicle interfaces such as a touch screen display, embedded voice recognition, steering wheel controls and various vehicle knobs and buttons. There are three main components that make up the SDL ecosystem.
* The [Core](https://github.com/smartdevicelink/sdl_core) component is the software which Vehicle Manufacturers (OEMs) implement in their vehicle head units. Integrating this component into their head unit and HMI based on a set of guidelines and templates enables access to various smartphone applications.
* The optional [SDL Server](https://github.com/smartdevicelink/sdl_server) can be used by Vehicle OEMs to update application policies and gather usage information for connected applications.
* The [iOS](https://github.com/smartdevicelink/sdl_ios) and [Android](https://github.com/smartdevicelink/sdl_android) libraries are implemented by app developers into their applications to enable command and control via the connected head unit.## SDL Server
The SmartDeviceLink (SDL) server allows the automated construction of policy tables, which the [SDL Core component](https://github.com/smartdevicelink/sdl_core) uses to validate messaging with connected applications. The server communicates with SHAID to maintain updated information about application information and uses that information to help build appropriate policy table responses.Depending on your needs, you may not require the use of the SDL Server. If you only want to permit all your apps using an sdl_core instance that you control, then you can edit the preloaded policy table to allow this. Edit the default permissions located in this line of the preloaded policy table: https://github.com/smartdevicelink/sdl_core/blob/master/src/appMain/sdl_preloaded_pt.json#L2273
Change the contents of that array to include this instead:
`
[“Base-4”, “Location-1", “Notifications”, “DrivingCharacteristics-3", “VehicleInfo-3”, “PropriataryData-1", “PropriataryData-2”, “ProprietaryData-3", “Emergency-1”, “Navigation-1", “Base-6”, “OnKeyboardInputOnlyGroup”, “OnTouchEventOnlyGroup”, “DiagnosticMessageOnly”, “DataConsent-2”, “BaseBeforeDataConsent”, “SendLocation”, “WayPoints”, “BackgroundAPT”]
`# Getting Started
A quick guide to setup the SDL server can be found at SmartDeviceLink.com## Documentation
All documentation can be found at SmartDeviceLink.com.## Contribute
If you have a suggestion or bug please submit an issue. You can submit code using a pull request, but please follow the contributing guidelines.