You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
jianglk.darker 7ee447c011
v811_spc009_project
4 months ago
..
aidl v811_spc009_project 4 months ago
products v811_spc009_project 4 months ago
sampleclient v811_spc009_project 4 months ago
sampleinternalclient v811_spc009_project 4 months ago
sepolicy v811_spc009_project 4 months ago
src v811_spc009_project 4 months ago
tests v811_spc009_project 4 months ago
ARCHITECTURE.md v811_spc009_project 4 months ago
Android.bp v811_spc009_project 4 months ago
README.md v811_spc009_project 4 months ago
android.automotive.telemetryd@1.0.rc v811_spc009_project 4 months ago
android.automotive.telemetryd@1.0.xml v811_spc009_project 4 months ago

README.md

Automotive Telemetry Service

A structured log collection service for CarTelemetryService. See ARCHITECTURE.md to learn internals.

Useful Commands

Dumping the service information

adb shell dumpsys android.automotive.telemetry.internal.ICarTelemetryInternal/default

Enabling VERBOSE logs

adb shell setprop log.tag.android.automotive.telemetryd@1.0 V
adb shell setprop log.tag.cartelemetryd_impl_test V

Starting emulator with cold boot

emulator -verbose -show-kernel -selinux permissive -writable-system -no-snapshot -wipe-data

Running the tests

atest cartelemetryd_impl_test:CarTelemetryInternalImplTest#TestSetListenerReturnsOk

atest cartelemetryd_impl_test

Enabling cartelemetryd

cartelemertryd service is by default not included in the final build. To include it on specific targets, add the following lines in necessary .mk files:

# Enable Automotive Telemetry Services (cartelemetryd) only on specific devices.
ifneq ($(filter $(TARGET_PRODUCT), TARGET1 TARGET2),)
include packages/services/Car/cpp/telemetry/cartelemetryd/products/telemetry.mk
endif

To find where the service was included, run this from $ANDROID_BUILD_TOP:

grep -rH --color --exclude-dir='**/.*' --exclude-dir='out' --include='*.mk' \
    'cartelemetryd/products/telemetry.mk' device/ vendor/