27 Mart 2025'ten itibaren AOSP'yi derlemek ve AOSP'ye katkıda bulunmak için aosp-main
yerine android-latest-release
kullanmanızı öneririz. Daha fazla bilgi için AOSP'de yapılan değişiklikler başlıklı makaleyi inceleyin.
HIDL VHAL arayüzü
Koleksiyonlar ile düzeninizi koruyun
İçeriği tercihlerinize göre kaydedin ve kategorilere ayırın.
HIDL VHAL arayüzü
IVehicle.hal
adresinde tanımlanır ve bu yöntemleri sağlar.
Yöntem |
Açıklama |
---|
getAllPropConfigs() oluşturur
(vec<VehiclePropConfig>propConfigs);
VHAL tarafından desteklenen tüm mülklerin yapılandırmasını listeler. CarService yalnızca desteklenen özellikleri kullanır.
|
ongetPropConfigs(vec props) oluşturur
(StatusCode status,vec<VehiclePropConfig> propConfigs);
Seçilen mülklerin yapılandırmasını döndürür.
|
set(VehiclePropValue propValue) oluşturur
(StatusCodestatus);
Bir mülke değer yazar. Yazma işleminin sonucu mülk başına tanımlanır.
|
subscribe(IVehicleCallback callback, vec options)
oluşturur (StatusCode status);
Mülk değeri değişikliğini izlemeye başlar.
|
unsubscribe(IVehicleCallback callback, int32_t propId)
oluşturur (StatusCode status);
Daha önce abone olunan bir mülk için mülk değeri değişikliğinin izlenmesini durdurur.
|
HIDL VHAL aşağıdaki geri çağırma arayüzlerini kullanır:
Geri Arama |
Açıklama |
---|
oneway |
onPropertyEvent(vecpropValues);
Araç mülkünün değer değişikliğini bildirir. Yalnızca abone olunan mülkler için geçerlidir.
|
oneway |
onPropertySetError(StatusCode errorCode,int32_t propId,int32_tareaId);
Belirli bir ayarlama işlemiyle ilişkilendirilemeyen, ayarsız mülk hataları döndürür.
|
Bu sayfadaki içerik ve kod örnekleri, İçerik Lisansı sayfasında açıklanan lisanslara tabidir. Java ve OpenJDK, Oracle ve/veya satış ortaklarının tescilli ticari markasıdır.
Son güncelleme tarihi: 2025-07-26 UTC.
[[["Anlaması kolay","easyToUnderstand","thumb-up"],["Sorunumu çözdü","solvedMyProblem","thumb-up"],["Diğer","otherUp","thumb-up"]],[["İhtiyacım olan bilgiler yok","missingTheInformationINeed","thumb-down"],["Çok karmaşık / çok fazla adım var","tooComplicatedTooManySteps","thumb-down"],["Güncel değil","outOfDate","thumb-down"],["Çeviri sorunu","translationIssue","thumb-down"],["Örnek veya kod sorunu","samplesCodeIssue","thumb-down"],["Diğer","otherDown","thumb-down"]],["Son güncelleme tarihi: 2025-07-26 UTC."],[],[],null,["# HIDL VHAL interface\n\nThe HIDL VHAL interface is defined at\n[`IVehicle.hal`](https://android.googlesource.com/platform/hardware/interfaces/+/refs/heads/android16-release/automotive/vehicle/2.0/IVehicle.hal)\nand provides these methods.\n\n| Method | Description |\n|--------|-------------|\n| `getAllPropConfigs()` **generates** `(vec\u003cVehiclePropConfig\u003epropConfigs);` Lists the configuration of all properties supported by the VHAL. CarService uses supported properties only. ||\n| `ongetPropConfigs(vec` props) **generates** `(StatusCode status,vec\u003cVehiclePropConfig\u003e propConfigs);` Returns the configuration of selected properties. ||\n| `set(VehiclePropValue propValue)` **generates** `(StatusCodestatus);` Writes a value to a property. The result of the write is defined per property. ||\n| `subscribe(IVehicleCallback callback, vec` options) **generates** `(StatusCode status);` Starts monitoring a property value change. ||\n| `unsubscribe(IVehicleCallback callback, int32_t propId)` **generates** `(StatusCode status);` Stops monitoring a property value change for a previous subscribed property. ||\n\nThe HIDL VHAL uses these callback interfaces:\n\n| Callback | Description |\n|----------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| `oneway` | `onPropertyEvent(vec`propValues); Notifies vehicle property's value change. Apply only to subscribed properties. |\n| `oneway` | `onPropertySetError(StatusCode errorCode,int32_t propId,int32_tareaId);` Returns async property set errors that can not be associated with a specific set operation. |"]]