commit | 2779a01f59b6974201010c9d41f3256b649fd49e | [log] [tgz] |
---|---|---|
author | Yu Shan <shanyu@google.com> | Tue Oct 31 18:12:12 2023 -0700 |
committer | Yu Shan <shanyu@google.com> | Fri Nov 17 14:47:58 2023 -0800 |
tree | ac6b4bffabc1218f1d756cb72a426b125e9b9fb5 | |
parent | c5609bb389f8512cf5be008eef566f39841da303 [diff] |
Default VUR on for CarPropertyService internal API. Default enable VUR for continuous property for registerListener API in CarPropertyService if flag is enabled. Add two new APIs to allow specifying enableVUR to be off. Remove ICarProperty.registerListener since it is no longer required. Test: atest CarPropertyServiceUnitTest Bug: 300700719 Change-Id: I15106e9ad3494274795f7e5ba70417dddaff08ce
Source code for Android Automotive OS.
car_product/ - AAOS product car-builtin-lib/ - A helper library for CarService to access hidden framework APIs car-lib/ - Car API car-lib-module/ - Car API module cpp/ - Native services experimental/ - Experimental Car API and services packages/ - Apps and services for cars service/ - Car service module service-builint - Platform builtin component that runs CarService module tests/ - Tests and sample apps tools/ - Helper scripts
Native (C++) code format is required to be compatible with .clang-format file. The formatter is already integrated to repo
tool. To run manually, use:
git clang-format --style=file --extension='h,cpp,cc' HEAD~
Note that clang-format is not desirable for Android java files. Therefore the command line above is limited to specific extensions.
Dumpsys and car shell can be useful when debugging CarService integration issues.
adb shell dumpsys car_service # to dump all car service information adb shell dumpsys car_service --services [service name] # to dump a specific service information adb shell dumpsys car_service --list # get list of available services
Dumpsys for CarService includes the following (more information is availble in dumpsys, below are just highlights):
adb shell cmd car_service
CarService supports commands via car shell:
(list is not complete, run adb shell cmd car_service -h for more details)
Start Garage mode
adb shell cmd car_service garage-mode on
Finish Garage mode
adb shell cmd car_service garage-mode on
Get Garage mode status
adb shell cmd car_service garage-mode query
Change Garage mode max duration (only eng and debug builds)
adb shell setprop android.car.garagemodeduration <seconds>