1# Rust Skeleton Audio Control HAL implementation. 2 3WARNING: This is not a reference audio control HAl implementation and does 4not contain any actual implementation. 5 6This folder contains a skeleton audio control HAL implementation in Rust to 7demonstrate how vendor may implement a Rust audio control HAL. To run this 8audio control HAL, include 9`android.hardware.automotive.audiocontrol-rust-service` in your image. 10 11This implementation returns `StatusCode::UNKNOWN_ERROR` for all operations 12and does not pass VTS/CTS. Vendor must replace the logic in 13`default_audio_control_hal.rs` with the actual implementation. 14