├── .gitignore ├── LICENSE ├── README.md ├── api ├── .gitignore └── franca │ ├── CMakeLists.txt │ ├── amb │ ├── CMakeLists.txt │ ├── Manager.fidl │ └── Properties.fidl │ └── fsa │ ├── CMakeLists.txt │ └── FuelStopAdvisor.fidl ├── doc └── fuel-stop-advisor │ ├── FSA-HMI.pdf │ ├── NavigatioAppBrowseMapSettings.png │ ├── NavigationAppAddress.png │ ├── NavigationAppBrowseMap.png │ ├── NavigationAppBrowseMapManeuvers.png │ ├── NavigationAppMain.png │ ├── NavigationAppPOI.png │ ├── NavigationAppRouteCalculated.png │ ├── NavigationAppSearch.png │ ├── NavigationAppSettings.png │ ├── NavigationAppTripComputer.png │ └── menu.md ├── src ├── .gitignore ├── CMakeLists.txt ├── README.md ├── build.sh ├── commonapi-dbus.ini ├── commonapi4dbus.ini ├── dead-reckoning │ ├── CMakeLists.txt │ ├── configuration.cpp │ ├── configuration.h │ ├── enhanced-position.cpp │ ├── enhanced-position.h │ ├── log.h │ ├── main.cpp │ ├── position-feedback.cpp │ └── position-feedback.h ├── fuel-stop-advisor-capi │ ├── CMakeLists.txt │ ├── amb.xml │ └── fuel-stop-advisor.cpp ├── fuel-stop-advisor │ ├── CMakeLists.txt │ ├── amb.xml │ ├── constants.xml │ ├── enum.xsl │ ├── fuel-stop-advisor.cpp │ ├── fuel-stop-advisor.xml │ ├── fuel_stop_advisor.service │ └── log.h ├── generate_translation_report.sh ├── genivilogreplayer │ ├── CMakeLists.txt │ ├── genivilogreplayerplugin.cpp │ ├── genivilogreplayerplugin.h │ └── logreplayerconfig.in.json ├── gnss-service │ ├── CMakeLists.txt │ ├── globals.h │ ├── gnss-impl.c │ ├── gnss-meta-data.c │ ├── gnss-use-replayer.c │ └── log.h ├── hmi │ ├── CMakeLists.txt │ ├── config │ │ ├── fsa_giromagny.conf │ │ ├── fsa_london.conf │ │ ├── fsa_paris.conf │ │ ├── fsa_seoul.conf │ │ ├── fsa_switzerland.conf │ │ └── fsa_tokyo.conf │ ├── gimp │ │ ├── README.md │ │ ├── gdp-theme │ │ │ ├── 800x480 │ │ │ │ ├── NavigationAppBrowseMap.xcf │ │ │ │ ├── NavigationAppBrowseMapBottom.xcf │ │ │ │ ├── NavigationAppBrowseMapCompass.xcf │ │ │ │ ├── NavigationAppBrowseMapGuidance.xcf │ │ │ │ ├── NavigationAppBrowseMapManeuver.xcf │ │ │ │ ├── NavigationAppBrowseMapRoute.xcf │ │ │ │ ├── NavigationAppBrowseMapScale.xcf │ │ │ │ ├── NavigationAppBrowseMapScroll.xcf │ │ │ │ ├── NavigationAppBrowseMapSettings.xcf │ │ │ │ ├── NavigationAppBrowseMapSimulation.xcf │ │ │ │ ├── NavigationAppBrowseMapTop.xcf │ │ │ │ ├── NavigationAppBrowseMapZoom.xcf │ │ │ │ ├── NavigationAppMain.xcf │ │ │ │ ├── NavigationAppMap.xcf │ │ │ │ ├── NavigationAppPOI.xcf │ │ │ │ ├── NavigationAppSearch.xcf │ │ │ │ ├── NavigationAppSettings.xcf │ │ │ │ ├── NavigationAppTripComputer.xcf │ │ │ │ └── button-keyboard.xcf │ │ │ └── LICENSE │ │ └── generate-style-sheet.py │ ├── hmi-launcher │ │ ├── CMakeLists.txt │ │ ├── dbusif.cpp │ │ ├── dbusif.h │ │ ├── dbusifsignal.h │ │ ├── dltif.cpp │ │ ├── dltif.h │ │ ├── hmi-launcher_fsa.service │ │ ├── javascript.xsl │ │ ├── lm_control.cpp │ │ ├── lm_control.h │ │ ├── main.cpp │ │ ├── preference.cpp │ │ ├── preference.h │ │ ├── settings.h │ │ ├── translator.h │ │ ├── wheelarea.h │ │ ├── wheelareaplugin.cpp │ │ ├── wheelareaplugin.h │ │ └── wheelareaplugin.json │ ├── html │ │ ├── CMakeLists.txt │ │ ├── js │ │ │ ├── loader.js │ │ │ ├── resource.js │ │ │ └── resource.js.in │ │ ├── plugins │ │ │ ├── NavigationCoreConfiguration.cpp │ │ │ └── NavigationCoreConfiguration.h │ │ ├── style-sheets │ │ │ └── stylesheet.css │ │ ├── test.html │ │ └── webidl │ │ │ └── NavigationCoreConfiguration.idl │ ├── images │ │ ├── .gitignore │ │ └── README │ ├── qml │ │ ├── Core │ │ │ ├── .gitignore │ │ │ ├── Button.qml │ │ │ ├── HMIGrid.qml │ │ │ ├── KButton.qml │ │ │ ├── NavigationAppEntryField.qml │ │ │ ├── NavigationAppHMIBgImage.qml │ │ │ ├── NavigationAppHMIList.qml │ │ │ ├── NavigationAppHMIMenu.qml │ │ │ ├── NavigationAppKeyboard.qml │ │ │ ├── SmartText.qml │ │ │ ├── StdButton.qml │ │ │ ├── genivi-capi.js │ │ │ ├── genivi-origin.js │ │ │ └── resource.js.in │ │ ├── FSA.qmlproject │ │ ├── NavigationApp.qml │ │ ├── NavigationAppBrowseMap.qml │ │ ├── NavigationAppMain.qml │ │ ├── NavigationAppMap.qml │ │ ├── NavigationAppPOI.qml │ │ ├── NavigationAppSearch.qml │ │ ├── NavigationAppSettings.qml │ │ ├── NavigationAppTripComputer.qml │ │ ├── javascript.xsl │ │ └── navigation.qmlproject │ ├── style-sheets │ │ ├── .gitignore │ │ └── style-constants.js │ ├── style_sheet_generator.sh │ └── translations │ │ ├── deu_DEU_Latn.ts │ │ ├── eng_USA_Latn.ts │ │ ├── fra_FRA_Latn.ts │ │ ├── jpn_JPN_Hrkt.ts │ │ ├── kor_KOR_Hang.ts │ │ └── translating-qml.pro ├── kill-all ├── log-replayer-server │ ├── CMakeLists.txt │ ├── log-replayer-server.cpp │ └── log.h ├── patches │ └── amb_allow_sessionbus.patch ├── referenceHMI.tar.gz ├── run ├── run-capi ├── script │ ├── .gitignore │ ├── kill-all │ └── prepare.sh ├── sensors-service │ ├── CMakeLists.txt │ ├── acceleration.c │ ├── globals.h │ ├── gyroscope.c │ ├── log.h │ ├── sns-meta-data.c │ ├── sns-use-replayer.c │ ├── vehicle-data.c │ ├── vehicle-speed.c │ └── wheeltick.c ├── set_window_location ├── tripcomputer │ ├── ctripcomputer.cpp │ ├── ctripcomputer.h │ └── ctripcomputertypes.h ├── update_hmi.sh ├── update_navit.sh ├── update_positioning.sh ├── update_third_party.sh ├── update_translation.sh └── vehicle-gateway │ ├── CMakeLists.txt │ ├── can.h │ ├── common.cpp │ ├── common.h │ ├── gnss.cpp │ ├── gnss.h │ ├── hnmea.cpp │ ├── hnmea.h │ ├── log.h │ ├── obd2.cpp │ ├── obd2.h │ └── veh-gateway.cpp └── test ├── .gitignore ├── README.md ├── bugList.ods ├── html-based-panel ├── .gitignore ├── README.md ├── js │ ├── resource.js │ └── resource.js.in ├── node-cpp-lbs-modules │ ├── FuelStopAdvisorWrapper.cpp │ ├── FuelStopAdvisorWrapper.hpp │ ├── Makefile │ ├── NavigationCoreWrapper.cpp │ ├── NavigationCoreWrapper.hpp │ ├── PositioningEnhancedPositionWrapper.cpp │ ├── PositioningEnhancedPositionWrapper.hpp │ ├── binding.gyp │ ├── dbus-proxies │ │ ├── DemonstratorProxy.cpp │ │ ├── DemonstratorProxy.hpp │ │ ├── NavigationCoreProxy.cpp │ │ ├── NavigationCoreProxy.hpp │ │ ├── PositioningProxy.cpp │ │ ├── PositioningProxy.hpp │ │ ├── amb_proxy.h │ │ ├── constants.h │ │ ├── enhanced-position-proxy.h │ │ ├── fuel-stop-advisor_proxy.h │ │ ├── genivi-dbus-model.h │ │ ├── genivi-navigationcore-constants.h │ │ ├── genivi-navigationcore-guidance_proxy.h │ │ ├── genivi-navigationcore-mapmatchedposition_proxy.h │ │ └── positioning-constants.h │ └── package.json ├── server.js ├── simulation-panel.html ├── style-sheets │ └── stylesheet.css └── viewer-panel.html ├── log └── test-route-calculation.pdf ├── resource ├── high-tank-level.log ├── initialization.log ├── low-tank-level.log ├── start.log ├── test-positioning.log └── test-vehicle-info.log └── script ├── .gitignore ├── configTests.py ├── dashboard.bmp ├── dashboard.png ├── dashboard.xcf ├── fsa-dbusmonitor.sh ├── set-position.py ├── set-vehicle-info.py ├── simulation-dashboard-capi.py ├── simulation-dashboard.py └── simulation-launch.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/README.md -------------------------------------------------------------------------------- /api/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/api/.gitignore -------------------------------------------------------------------------------- /api/franca/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/api/franca/CMakeLists.txt -------------------------------------------------------------------------------- /api/franca/amb/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/api/franca/amb/CMakeLists.txt -------------------------------------------------------------------------------- /api/franca/amb/Manager.fidl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/api/franca/amb/Manager.fidl -------------------------------------------------------------------------------- /api/franca/amb/Properties.fidl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/api/franca/amb/Properties.fidl -------------------------------------------------------------------------------- /api/franca/fsa/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/api/franca/fsa/CMakeLists.txt -------------------------------------------------------------------------------- /api/franca/fsa/FuelStopAdvisor.fidl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/api/franca/fsa/FuelStopAdvisor.fidl -------------------------------------------------------------------------------- /doc/fuel-stop-advisor/FSA-HMI.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/doc/fuel-stop-advisor/FSA-HMI.pdf -------------------------------------------------------------------------------- /doc/fuel-stop-advisor/NavigatioAppBrowseMapSettings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/doc/fuel-stop-advisor/NavigatioAppBrowseMapSettings.png -------------------------------------------------------------------------------- /doc/fuel-stop-advisor/NavigationAppAddress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/doc/fuel-stop-advisor/NavigationAppAddress.png -------------------------------------------------------------------------------- /doc/fuel-stop-advisor/NavigationAppBrowseMap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/doc/fuel-stop-advisor/NavigationAppBrowseMap.png -------------------------------------------------------------------------------- /doc/fuel-stop-advisor/NavigationAppBrowseMapManeuvers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/doc/fuel-stop-advisor/NavigationAppBrowseMapManeuvers.png -------------------------------------------------------------------------------- /doc/fuel-stop-advisor/NavigationAppMain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/doc/fuel-stop-advisor/NavigationAppMain.png -------------------------------------------------------------------------------- /doc/fuel-stop-advisor/NavigationAppPOI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/doc/fuel-stop-advisor/NavigationAppPOI.png -------------------------------------------------------------------------------- /doc/fuel-stop-advisor/NavigationAppRouteCalculated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/doc/fuel-stop-advisor/NavigationAppRouteCalculated.png -------------------------------------------------------------------------------- /doc/fuel-stop-advisor/NavigationAppSearch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/doc/fuel-stop-advisor/NavigationAppSearch.png -------------------------------------------------------------------------------- /doc/fuel-stop-advisor/NavigationAppSettings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/doc/fuel-stop-advisor/NavigationAppSettings.png -------------------------------------------------------------------------------- /doc/fuel-stop-advisor/NavigationAppTripComputer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/doc/fuel-stop-advisor/NavigationAppTripComputer.png -------------------------------------------------------------------------------- /doc/fuel-stop-advisor/menu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/doc/fuel-stop-advisor/menu.md -------------------------------------------------------------------------------- /src/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/src/.gitignore -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/src/README.md -------------------------------------------------------------------------------- /src/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/src/build.sh -------------------------------------------------------------------------------- /src/commonapi-dbus.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/src/commonapi-dbus.ini -------------------------------------------------------------------------------- /src/commonapi4dbus.ini: -------------------------------------------------------------------------------- 1 | [default] 2 | binding=dbus 3 | 4 | 5 | -------------------------------------------------------------------------------- /src/dead-reckoning/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/src/dead-reckoning/CMakeLists.txt -------------------------------------------------------------------------------- /src/dead-reckoning/configuration.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/src/dead-reckoning/configuration.cpp -------------------------------------------------------------------------------- /src/dead-reckoning/configuration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/src/dead-reckoning/configuration.h -------------------------------------------------------------------------------- /src/dead-reckoning/enhanced-position.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/src/dead-reckoning/enhanced-position.cpp -------------------------------------------------------------------------------- /src/dead-reckoning/enhanced-position.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/src/dead-reckoning/enhanced-position.h -------------------------------------------------------------------------------- /src/dead-reckoning/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/src/dead-reckoning/log.h -------------------------------------------------------------------------------- /src/dead-reckoning/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/src/dead-reckoning/main.cpp -------------------------------------------------------------------------------- /src/dead-reckoning/position-feedback.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/src/dead-reckoning/position-feedback.cpp -------------------------------------------------------------------------------- /src/dead-reckoning/position-feedback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/src/dead-reckoning/position-feedback.h -------------------------------------------------------------------------------- /src/fuel-stop-advisor-capi/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/src/fuel-stop-advisor-capi/CMakeLists.txt -------------------------------------------------------------------------------- /src/fuel-stop-advisor-capi/amb.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/src/fuel-stop-advisor-capi/amb.xml -------------------------------------------------------------------------------- /src/fuel-stop-advisor-capi/fuel-stop-advisor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/src/fuel-stop-advisor-capi/fuel-stop-advisor.cpp -------------------------------------------------------------------------------- /src/fuel-stop-advisor/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/src/fuel-stop-advisor/CMakeLists.txt -------------------------------------------------------------------------------- /src/fuel-stop-advisor/amb.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/src/fuel-stop-advisor/amb.xml -------------------------------------------------------------------------------- /src/fuel-stop-advisor/constants.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/src/fuel-stop-advisor/constants.xml -------------------------------------------------------------------------------- /src/fuel-stop-advisor/enum.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/src/fuel-stop-advisor/enum.xsl -------------------------------------------------------------------------------- /src/fuel-stop-advisor/fuel-stop-advisor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/src/fuel-stop-advisor/fuel-stop-advisor.cpp -------------------------------------------------------------------------------- /src/fuel-stop-advisor/fuel-stop-advisor.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/src/fuel-stop-advisor/fuel-stop-advisor.xml -------------------------------------------------------------------------------- /src/fuel-stop-advisor/fuel_stop_advisor.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/src/fuel-stop-advisor/fuel_stop_advisor.service -------------------------------------------------------------------------------- /src/fuel-stop-advisor/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/src/fuel-stop-advisor/log.h -------------------------------------------------------------------------------- /src/generate_translation_report.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/src/generate_translation_report.sh -------------------------------------------------------------------------------- /src/genivilogreplayer/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/src/genivilogreplayer/CMakeLists.txt -------------------------------------------------------------------------------- /src/genivilogreplayer/genivilogreplayerplugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/src/genivilogreplayer/genivilogreplayerplugin.cpp -------------------------------------------------------------------------------- /src/genivilogreplayer/genivilogreplayerplugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/src/genivilogreplayer/genivilogreplayerplugin.h -------------------------------------------------------------------------------- /src/genivilogreplayer/logreplayerconfig.in.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/src/genivilogreplayer/logreplayerconfig.in.json -------------------------------------------------------------------------------- /src/gnss-service/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/src/gnss-service/CMakeLists.txt -------------------------------------------------------------------------------- /src/gnss-service/globals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/src/gnss-service/globals.h -------------------------------------------------------------------------------- /src/gnss-service/gnss-impl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/src/gnss-service/gnss-impl.c -------------------------------------------------------------------------------- /src/gnss-service/gnss-meta-data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/src/gnss-service/gnss-meta-data.c -------------------------------------------------------------------------------- /src/gnss-service/gnss-use-replayer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/src/gnss-service/gnss-use-replayer.c -------------------------------------------------------------------------------- /src/gnss-service/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/src/gnss-service/log.h -------------------------------------------------------------------------------- /src/hmi/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/src/hmi/CMakeLists.txt -------------------------------------------------------------------------------- /src/hmi/config/fsa_giromagny.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/src/hmi/config/fsa_giromagny.conf -------------------------------------------------------------------------------- /src/hmi/config/fsa_london.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/src/hmi/config/fsa_london.conf -------------------------------------------------------------------------------- /src/hmi/config/fsa_paris.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/src/hmi/config/fsa_paris.conf -------------------------------------------------------------------------------- /src/hmi/config/fsa_seoul.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/src/hmi/config/fsa_seoul.conf -------------------------------------------------------------------------------- /src/hmi/config/fsa_switzerland.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/src/hmi/config/fsa_switzerland.conf -------------------------------------------------------------------------------- /src/hmi/config/fsa_tokyo.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/src/hmi/config/fsa_tokyo.conf -------------------------------------------------------------------------------- /src/hmi/gimp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/src/hmi/gimp/README.md -------------------------------------------------------------------------------- /src/hmi/gimp/gdp-theme/800x480/NavigationAppBrowseMap.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/src/hmi/gimp/gdp-theme/800x480/NavigationAppBrowseMap.xcf -------------------------------------------------------------------------------- /src/hmi/gimp/gdp-theme/800x480/NavigationAppBrowseMapBottom.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/src/hmi/gimp/gdp-theme/800x480/NavigationAppBrowseMapBottom.xcf -------------------------------------------------------------------------------- /src/hmi/gimp/gdp-theme/800x480/NavigationAppBrowseMapCompass.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/src/hmi/gimp/gdp-theme/800x480/NavigationAppBrowseMapCompass.xcf -------------------------------------------------------------------------------- /src/hmi/gimp/gdp-theme/800x480/NavigationAppBrowseMapGuidance.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/src/hmi/gimp/gdp-theme/800x480/NavigationAppBrowseMapGuidance.xcf -------------------------------------------------------------------------------- /src/hmi/gimp/gdp-theme/800x480/NavigationAppBrowseMapManeuver.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/src/hmi/gimp/gdp-theme/800x480/NavigationAppBrowseMapManeuver.xcf -------------------------------------------------------------------------------- /src/hmi/gimp/gdp-theme/800x480/NavigationAppBrowseMapRoute.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/src/hmi/gimp/gdp-theme/800x480/NavigationAppBrowseMapRoute.xcf -------------------------------------------------------------------------------- /src/hmi/gimp/gdp-theme/800x480/NavigationAppBrowseMapScale.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/src/hmi/gimp/gdp-theme/800x480/NavigationAppBrowseMapScale.xcf -------------------------------------------------------------------------------- /src/hmi/gimp/gdp-theme/800x480/NavigationAppBrowseMapScroll.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/src/hmi/gimp/gdp-theme/800x480/NavigationAppBrowseMapScroll.xcf -------------------------------------------------------------------------------- /src/hmi/gimp/gdp-theme/800x480/NavigationAppBrowseMapSettings.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/src/hmi/gimp/gdp-theme/800x480/NavigationAppBrowseMapSettings.xcf -------------------------------------------------------------------------------- /src/hmi/gimp/gdp-theme/800x480/NavigationAppBrowseMapSimulation.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/src/hmi/gimp/gdp-theme/800x480/NavigationAppBrowseMapSimulation.xcf -------------------------------------------------------------------------------- /src/hmi/gimp/gdp-theme/800x480/NavigationAppBrowseMapTop.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/src/hmi/gimp/gdp-theme/800x480/NavigationAppBrowseMapTop.xcf -------------------------------------------------------------------------------- /src/hmi/gimp/gdp-theme/800x480/NavigationAppBrowseMapZoom.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/src/hmi/gimp/gdp-theme/800x480/NavigationAppBrowseMapZoom.xcf -------------------------------------------------------------------------------- /src/hmi/gimp/gdp-theme/800x480/NavigationAppMain.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/src/hmi/gimp/gdp-theme/800x480/NavigationAppMain.xcf -------------------------------------------------------------------------------- /src/hmi/gimp/gdp-theme/800x480/NavigationAppMap.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/src/hmi/gimp/gdp-theme/800x480/NavigationAppMap.xcf -------------------------------------------------------------------------------- /src/hmi/gimp/gdp-theme/800x480/NavigationAppPOI.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/src/hmi/gimp/gdp-theme/800x480/NavigationAppPOI.xcf -------------------------------------------------------------------------------- /src/hmi/gimp/gdp-theme/800x480/NavigationAppSearch.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/src/hmi/gimp/gdp-theme/800x480/NavigationAppSearch.xcf -------------------------------------------------------------------------------- /src/hmi/gimp/gdp-theme/800x480/NavigationAppSettings.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/src/hmi/gimp/gdp-theme/800x480/NavigationAppSettings.xcf -------------------------------------------------------------------------------- /src/hmi/gimp/gdp-theme/800x480/NavigationAppTripComputer.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/src/hmi/gimp/gdp-theme/800x480/NavigationAppTripComputer.xcf -------------------------------------------------------------------------------- /src/hmi/gimp/gdp-theme/800x480/button-keyboard.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/src/hmi/gimp/gdp-theme/800x480/button-keyboard.xcf -------------------------------------------------------------------------------- /src/hmi/gimp/gdp-theme/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/src/hmi/gimp/gdp-theme/LICENSE -------------------------------------------------------------------------------- /src/hmi/gimp/generate-style-sheet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/src/hmi/gimp/generate-style-sheet.py -------------------------------------------------------------------------------- /src/hmi/hmi-launcher/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/src/hmi/hmi-launcher/CMakeLists.txt -------------------------------------------------------------------------------- /src/hmi/hmi-launcher/dbusif.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/src/hmi/hmi-launcher/dbusif.cpp -------------------------------------------------------------------------------- /src/hmi/hmi-launcher/dbusif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/src/hmi/hmi-launcher/dbusif.h -------------------------------------------------------------------------------- /src/hmi/hmi-launcher/dbusifsignal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/src/hmi/hmi-launcher/dbusifsignal.h -------------------------------------------------------------------------------- /src/hmi/hmi-launcher/dltif.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/src/hmi/hmi-launcher/dltif.cpp -------------------------------------------------------------------------------- /src/hmi/hmi-launcher/dltif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/src/hmi/hmi-launcher/dltif.h -------------------------------------------------------------------------------- /src/hmi/hmi-launcher/hmi-launcher_fsa.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/src/hmi/hmi-launcher/hmi-launcher_fsa.service -------------------------------------------------------------------------------- /src/hmi/hmi-launcher/javascript.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/src/hmi/hmi-launcher/javascript.xsl -------------------------------------------------------------------------------- /src/hmi/hmi-launcher/lm_control.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/src/hmi/hmi-launcher/lm_control.cpp -------------------------------------------------------------------------------- /src/hmi/hmi-launcher/lm_control.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/src/hmi/hmi-launcher/lm_control.h -------------------------------------------------------------------------------- /src/hmi/hmi-launcher/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/src/hmi/hmi-launcher/main.cpp -------------------------------------------------------------------------------- /src/hmi/hmi-launcher/preference.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/src/hmi/hmi-launcher/preference.cpp -------------------------------------------------------------------------------- /src/hmi/hmi-launcher/preference.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/src/hmi/hmi-launcher/preference.h -------------------------------------------------------------------------------- /src/hmi/hmi-launcher/settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/src/hmi/hmi-launcher/settings.h -------------------------------------------------------------------------------- /src/hmi/hmi-launcher/translator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/src/hmi/hmi-launcher/translator.h -------------------------------------------------------------------------------- /src/hmi/hmi-launcher/wheelarea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/src/hmi/hmi-launcher/wheelarea.h -------------------------------------------------------------------------------- /src/hmi/hmi-launcher/wheelareaplugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/src/hmi/hmi-launcher/wheelareaplugin.cpp -------------------------------------------------------------------------------- /src/hmi/hmi-launcher/wheelareaplugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/src/hmi/hmi-launcher/wheelareaplugin.h -------------------------------------------------------------------------------- /src/hmi/hmi-launcher/wheelareaplugin.json: -------------------------------------------------------------------------------- 1 | { 2 | "Keys": [ "WheelArea" ] 3 | } 4 | -------------------------------------------------------------------------------- /src/hmi/html/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/src/hmi/html/CMakeLists.txt -------------------------------------------------------------------------------- /src/hmi/html/js/loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/src/hmi/html/js/loader.js -------------------------------------------------------------------------------- /src/hmi/html/js/resource.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/src/hmi/html/js/resource.js -------------------------------------------------------------------------------- /src/hmi/html/js/resource.js.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/src/hmi/html/js/resource.js.in -------------------------------------------------------------------------------- /src/hmi/html/plugins/NavigationCoreConfiguration.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/src/hmi/html/plugins/NavigationCoreConfiguration.cpp -------------------------------------------------------------------------------- /src/hmi/html/plugins/NavigationCoreConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/src/hmi/html/plugins/NavigationCoreConfiguration.h -------------------------------------------------------------------------------- /src/hmi/html/style-sheets/stylesheet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/src/hmi/html/style-sheets/stylesheet.css -------------------------------------------------------------------------------- /src/hmi/html/test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/src/hmi/html/test.html -------------------------------------------------------------------------------- /src/hmi/html/webidl/NavigationCoreConfiguration.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/src/hmi/html/webidl/NavigationCoreConfiguration.idl -------------------------------------------------------------------------------- /src/hmi/images/.gitignore: -------------------------------------------------------------------------------- 1 | *.png -------------------------------------------------------------------------------- /src/hmi/images/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/src/hmi/images/README -------------------------------------------------------------------------------- /src/hmi/qml/Core/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/src/hmi/qml/Core/.gitignore -------------------------------------------------------------------------------- /src/hmi/qml/Core/Button.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/src/hmi/qml/Core/Button.qml -------------------------------------------------------------------------------- /src/hmi/qml/Core/HMIGrid.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/src/hmi/qml/Core/HMIGrid.qml -------------------------------------------------------------------------------- /src/hmi/qml/Core/KButton.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/src/hmi/qml/Core/KButton.qml -------------------------------------------------------------------------------- /src/hmi/qml/Core/NavigationAppEntryField.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/src/hmi/qml/Core/NavigationAppEntryField.qml -------------------------------------------------------------------------------- /src/hmi/qml/Core/NavigationAppHMIBgImage.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/src/hmi/qml/Core/NavigationAppHMIBgImage.qml -------------------------------------------------------------------------------- /src/hmi/qml/Core/NavigationAppHMIList.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/src/hmi/qml/Core/NavigationAppHMIList.qml -------------------------------------------------------------------------------- /src/hmi/qml/Core/NavigationAppHMIMenu.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/src/hmi/qml/Core/NavigationAppHMIMenu.qml -------------------------------------------------------------------------------- /src/hmi/qml/Core/NavigationAppKeyboard.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/src/hmi/qml/Core/NavigationAppKeyboard.qml -------------------------------------------------------------------------------- /src/hmi/qml/Core/SmartText.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/src/hmi/qml/Core/SmartText.qml -------------------------------------------------------------------------------- /src/hmi/qml/Core/StdButton.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/src/hmi/qml/Core/StdButton.qml -------------------------------------------------------------------------------- /src/hmi/qml/Core/genivi-capi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/src/hmi/qml/Core/genivi-capi.js -------------------------------------------------------------------------------- /src/hmi/qml/Core/genivi-origin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/src/hmi/qml/Core/genivi-origin.js -------------------------------------------------------------------------------- /src/hmi/qml/Core/resource.js.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/src/hmi/qml/Core/resource.js.in -------------------------------------------------------------------------------- /src/hmi/qml/FSA.qmlproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/src/hmi/qml/FSA.qmlproject -------------------------------------------------------------------------------- /src/hmi/qml/NavigationApp.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/src/hmi/qml/NavigationApp.qml -------------------------------------------------------------------------------- /src/hmi/qml/NavigationAppBrowseMap.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/src/hmi/qml/NavigationAppBrowseMap.qml -------------------------------------------------------------------------------- /src/hmi/qml/NavigationAppMain.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/src/hmi/qml/NavigationAppMain.qml -------------------------------------------------------------------------------- /src/hmi/qml/NavigationAppMap.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/src/hmi/qml/NavigationAppMap.qml -------------------------------------------------------------------------------- /src/hmi/qml/NavigationAppPOI.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/src/hmi/qml/NavigationAppPOI.qml -------------------------------------------------------------------------------- /src/hmi/qml/NavigationAppSearch.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/src/hmi/qml/NavigationAppSearch.qml -------------------------------------------------------------------------------- /src/hmi/qml/NavigationAppSettings.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/src/hmi/qml/NavigationAppSettings.qml -------------------------------------------------------------------------------- /src/hmi/qml/NavigationAppTripComputer.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/src/hmi/qml/NavigationAppTripComputer.qml -------------------------------------------------------------------------------- /src/hmi/qml/javascript.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/src/hmi/qml/javascript.xsl -------------------------------------------------------------------------------- /src/hmi/qml/navigation.qmlproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/src/hmi/qml/navigation.qmlproject -------------------------------------------------------------------------------- /src/hmi/style-sheets/.gitignore: -------------------------------------------------------------------------------- 1 | *-css.js -------------------------------------------------------------------------------- /src/hmi/style-sheets/style-constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/src/hmi/style-sheets/style-constants.js -------------------------------------------------------------------------------- /src/hmi/style_sheet_generator.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/src/hmi/style_sheet_generator.sh -------------------------------------------------------------------------------- /src/hmi/translations/deu_DEU_Latn.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/src/hmi/translations/deu_DEU_Latn.ts -------------------------------------------------------------------------------- /src/hmi/translations/eng_USA_Latn.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/src/hmi/translations/eng_USA_Latn.ts -------------------------------------------------------------------------------- /src/hmi/translations/fra_FRA_Latn.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/src/hmi/translations/fra_FRA_Latn.ts -------------------------------------------------------------------------------- /src/hmi/translations/jpn_JPN_Hrkt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/src/hmi/translations/jpn_JPN_Hrkt.ts -------------------------------------------------------------------------------- /src/hmi/translations/kor_KOR_Hang.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/src/hmi/translations/kor_KOR_Hang.ts -------------------------------------------------------------------------------- /src/hmi/translations/translating-qml.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/src/hmi/translations/translating-qml.pro -------------------------------------------------------------------------------- /src/kill-all: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/src/kill-all -------------------------------------------------------------------------------- /src/log-replayer-server/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/src/log-replayer-server/CMakeLists.txt -------------------------------------------------------------------------------- /src/log-replayer-server/log-replayer-server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/src/log-replayer-server/log-replayer-server.cpp -------------------------------------------------------------------------------- /src/log-replayer-server/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/src/log-replayer-server/log.h -------------------------------------------------------------------------------- /src/patches/amb_allow_sessionbus.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/src/patches/amb_allow_sessionbus.patch -------------------------------------------------------------------------------- /src/referenceHMI.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/src/referenceHMI.tar.gz -------------------------------------------------------------------------------- /src/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/src/run -------------------------------------------------------------------------------- /src/run-capi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/src/run-capi -------------------------------------------------------------------------------- /src/script/.gitignore: -------------------------------------------------------------------------------- 1 | env.sh 2 | -------------------------------------------------------------------------------- /src/script/kill-all: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/src/script/kill-all -------------------------------------------------------------------------------- /src/script/prepare.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/src/script/prepare.sh -------------------------------------------------------------------------------- /src/sensors-service/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/src/sensors-service/CMakeLists.txt -------------------------------------------------------------------------------- /src/sensors-service/acceleration.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/src/sensors-service/acceleration.c -------------------------------------------------------------------------------- /src/sensors-service/globals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/src/sensors-service/globals.h -------------------------------------------------------------------------------- /src/sensors-service/gyroscope.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/src/sensors-service/gyroscope.c -------------------------------------------------------------------------------- /src/sensors-service/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/src/sensors-service/log.h -------------------------------------------------------------------------------- /src/sensors-service/sns-meta-data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/src/sensors-service/sns-meta-data.c -------------------------------------------------------------------------------- /src/sensors-service/sns-use-replayer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/src/sensors-service/sns-use-replayer.c -------------------------------------------------------------------------------- /src/sensors-service/vehicle-data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/src/sensors-service/vehicle-data.c -------------------------------------------------------------------------------- /src/sensors-service/vehicle-speed.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/src/sensors-service/vehicle-speed.c -------------------------------------------------------------------------------- /src/sensors-service/wheeltick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/src/sensors-service/wheeltick.c -------------------------------------------------------------------------------- /src/set_window_location: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/src/set_window_location -------------------------------------------------------------------------------- /src/tripcomputer/ctripcomputer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/src/tripcomputer/ctripcomputer.cpp -------------------------------------------------------------------------------- /src/tripcomputer/ctripcomputer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/src/tripcomputer/ctripcomputer.h -------------------------------------------------------------------------------- /src/tripcomputer/ctripcomputertypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/src/tripcomputer/ctripcomputertypes.h -------------------------------------------------------------------------------- /src/update_hmi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/src/update_hmi.sh -------------------------------------------------------------------------------- /src/update_navit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/src/update_navit.sh -------------------------------------------------------------------------------- /src/update_positioning.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/src/update_positioning.sh -------------------------------------------------------------------------------- /src/update_third_party.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/src/update_third_party.sh -------------------------------------------------------------------------------- /src/update_translation.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/src/update_translation.sh -------------------------------------------------------------------------------- /src/vehicle-gateway/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/src/vehicle-gateway/CMakeLists.txt -------------------------------------------------------------------------------- /src/vehicle-gateway/can.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/src/vehicle-gateway/can.h -------------------------------------------------------------------------------- /src/vehicle-gateway/common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/src/vehicle-gateway/common.cpp -------------------------------------------------------------------------------- /src/vehicle-gateway/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/src/vehicle-gateway/common.h -------------------------------------------------------------------------------- /src/vehicle-gateway/gnss.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/src/vehicle-gateway/gnss.cpp -------------------------------------------------------------------------------- /src/vehicle-gateway/gnss.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/src/vehicle-gateway/gnss.h -------------------------------------------------------------------------------- /src/vehicle-gateway/hnmea.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/src/vehicle-gateway/hnmea.cpp -------------------------------------------------------------------------------- /src/vehicle-gateway/hnmea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/src/vehicle-gateway/hnmea.h -------------------------------------------------------------------------------- /src/vehicle-gateway/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/src/vehicle-gateway/log.h -------------------------------------------------------------------------------- /src/vehicle-gateway/obd2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/src/vehicle-gateway/obd2.cpp -------------------------------------------------------------------------------- /src/vehicle-gateway/obd2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/src/vehicle-gateway/obd2.h -------------------------------------------------------------------------------- /src/vehicle-gateway/veh-gateway.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/src/vehicle-gateway/veh-gateway.cpp -------------------------------------------------------------------------------- /test/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/test/.gitignore -------------------------------------------------------------------------------- /test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/test/README.md -------------------------------------------------------------------------------- /test/bugList.ods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/test/bugList.ods -------------------------------------------------------------------------------- /test/html-based-panel/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | ~ 3 | build 4 | *.tgz 5 | -------------------------------------------------------------------------------- /test/html-based-panel/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/test/html-based-panel/README.md -------------------------------------------------------------------------------- /test/html-based-panel/js/resource.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/test/html-based-panel/js/resource.js -------------------------------------------------------------------------------- /test/html-based-panel/js/resource.js.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/test/html-based-panel/js/resource.js.in -------------------------------------------------------------------------------- /test/html-based-panel/node-cpp-lbs-modules/FuelStopAdvisorWrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/test/html-based-panel/node-cpp-lbs-modules/FuelStopAdvisorWrapper.cpp -------------------------------------------------------------------------------- /test/html-based-panel/node-cpp-lbs-modules/FuelStopAdvisorWrapper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/test/html-based-panel/node-cpp-lbs-modules/FuelStopAdvisorWrapper.hpp -------------------------------------------------------------------------------- /test/html-based-panel/node-cpp-lbs-modules/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/test/html-based-panel/node-cpp-lbs-modules/Makefile -------------------------------------------------------------------------------- /test/html-based-panel/node-cpp-lbs-modules/NavigationCoreWrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/test/html-based-panel/node-cpp-lbs-modules/NavigationCoreWrapper.cpp -------------------------------------------------------------------------------- /test/html-based-panel/node-cpp-lbs-modules/NavigationCoreWrapper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/test/html-based-panel/node-cpp-lbs-modules/NavigationCoreWrapper.hpp -------------------------------------------------------------------------------- /test/html-based-panel/node-cpp-lbs-modules/PositioningEnhancedPositionWrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/test/html-based-panel/node-cpp-lbs-modules/PositioningEnhancedPositionWrapper.cpp -------------------------------------------------------------------------------- /test/html-based-panel/node-cpp-lbs-modules/PositioningEnhancedPositionWrapper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/test/html-based-panel/node-cpp-lbs-modules/PositioningEnhancedPositionWrapper.hpp -------------------------------------------------------------------------------- /test/html-based-panel/node-cpp-lbs-modules/binding.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/test/html-based-panel/node-cpp-lbs-modules/binding.gyp -------------------------------------------------------------------------------- /test/html-based-panel/node-cpp-lbs-modules/dbus-proxies/DemonstratorProxy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/test/html-based-panel/node-cpp-lbs-modules/dbus-proxies/DemonstratorProxy.cpp -------------------------------------------------------------------------------- /test/html-based-panel/node-cpp-lbs-modules/dbus-proxies/DemonstratorProxy.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/test/html-based-panel/node-cpp-lbs-modules/dbus-proxies/DemonstratorProxy.hpp -------------------------------------------------------------------------------- /test/html-based-panel/node-cpp-lbs-modules/dbus-proxies/NavigationCoreProxy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/test/html-based-panel/node-cpp-lbs-modules/dbus-proxies/NavigationCoreProxy.cpp -------------------------------------------------------------------------------- /test/html-based-panel/node-cpp-lbs-modules/dbus-proxies/NavigationCoreProxy.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/test/html-based-panel/node-cpp-lbs-modules/dbus-proxies/NavigationCoreProxy.hpp -------------------------------------------------------------------------------- /test/html-based-panel/node-cpp-lbs-modules/dbus-proxies/PositioningProxy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/test/html-based-panel/node-cpp-lbs-modules/dbus-proxies/PositioningProxy.cpp -------------------------------------------------------------------------------- /test/html-based-panel/node-cpp-lbs-modules/dbus-proxies/PositioningProxy.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/test/html-based-panel/node-cpp-lbs-modules/dbus-proxies/PositioningProxy.hpp -------------------------------------------------------------------------------- /test/html-based-panel/node-cpp-lbs-modules/dbus-proxies/amb_proxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/test/html-based-panel/node-cpp-lbs-modules/dbus-proxies/amb_proxy.h -------------------------------------------------------------------------------- /test/html-based-panel/node-cpp-lbs-modules/dbus-proxies/constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/test/html-based-panel/node-cpp-lbs-modules/dbus-proxies/constants.h -------------------------------------------------------------------------------- /test/html-based-panel/node-cpp-lbs-modules/dbus-proxies/enhanced-position-proxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/test/html-based-panel/node-cpp-lbs-modules/dbus-proxies/enhanced-position-proxy.h -------------------------------------------------------------------------------- /test/html-based-panel/node-cpp-lbs-modules/dbus-proxies/fuel-stop-advisor_proxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/test/html-based-panel/node-cpp-lbs-modules/dbus-proxies/fuel-stop-advisor_proxy.h -------------------------------------------------------------------------------- /test/html-based-panel/node-cpp-lbs-modules/dbus-proxies/genivi-dbus-model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/test/html-based-panel/node-cpp-lbs-modules/dbus-proxies/genivi-dbus-model.h -------------------------------------------------------------------------------- /test/html-based-panel/node-cpp-lbs-modules/dbus-proxies/genivi-navigationcore-constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/test/html-based-panel/node-cpp-lbs-modules/dbus-proxies/genivi-navigationcore-constants.h -------------------------------------------------------------------------------- /test/html-based-panel/node-cpp-lbs-modules/dbus-proxies/genivi-navigationcore-guidance_proxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/test/html-based-panel/node-cpp-lbs-modules/dbus-proxies/genivi-navigationcore-guidance_proxy.h -------------------------------------------------------------------------------- /test/html-based-panel/node-cpp-lbs-modules/dbus-proxies/genivi-navigationcore-mapmatchedposition_proxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/test/html-based-panel/node-cpp-lbs-modules/dbus-proxies/genivi-navigationcore-mapmatchedposition_proxy.h -------------------------------------------------------------------------------- /test/html-based-panel/node-cpp-lbs-modules/dbus-proxies/positioning-constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/test/html-based-panel/node-cpp-lbs-modules/dbus-proxies/positioning-constants.h -------------------------------------------------------------------------------- /test/html-based-panel/node-cpp-lbs-modules/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/test/html-based-panel/node-cpp-lbs-modules/package.json -------------------------------------------------------------------------------- /test/html-based-panel/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/test/html-based-panel/server.js -------------------------------------------------------------------------------- /test/html-based-panel/simulation-panel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/test/html-based-panel/simulation-panel.html -------------------------------------------------------------------------------- /test/html-based-panel/style-sheets/stylesheet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/test/html-based-panel/style-sheets/stylesheet.css -------------------------------------------------------------------------------- /test/html-based-panel/viewer-panel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/test/html-based-panel/viewer-panel.html -------------------------------------------------------------------------------- /test/log/test-route-calculation.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/test/log/test-route-calculation.pdf -------------------------------------------------------------------------------- /test/resource/high-tank-level.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/test/resource/high-tank-level.log -------------------------------------------------------------------------------- /test/resource/initialization.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/test/resource/initialization.log -------------------------------------------------------------------------------- /test/resource/low-tank-level.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/test/resource/low-tank-level.log -------------------------------------------------------------------------------- /test/resource/start.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/test/resource/start.log -------------------------------------------------------------------------------- /test/resource/test-positioning.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/test/resource/test-positioning.log -------------------------------------------------------------------------------- /test/resource/test-vehicle-info.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/test/resource/test-vehicle-info.log -------------------------------------------------------------------------------- /test/script/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | -------------------------------------------------------------------------------- /test/script/configTests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/test/script/configTests.py -------------------------------------------------------------------------------- /test/script/dashboard.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/test/script/dashboard.bmp -------------------------------------------------------------------------------- /test/script/dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/test/script/dashboard.png -------------------------------------------------------------------------------- /test/script/dashboard.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/test/script/dashboard.xcf -------------------------------------------------------------------------------- /test/script/fsa-dbusmonitor.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/test/script/fsa-dbusmonitor.sh -------------------------------------------------------------------------------- /test/script/set-position.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/test/script/set-position.py -------------------------------------------------------------------------------- /test/script/set-vehicle-info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/test/script/set-vehicle-info.py -------------------------------------------------------------------------------- /test/script/simulation-dashboard-capi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/test/script/simulation-dashboard-capi.py -------------------------------------------------------------------------------- /test/script/simulation-dashboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/test/script/simulation-dashboard.py -------------------------------------------------------------------------------- /test/script/simulation-launch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/navigation-application/HEAD/test/script/simulation-launch.py --------------------------------------------------------------------------------