เมื่อแอปขอให้ตัวจัดการวิทยุเปิดเครื่องรับสัญญาณ ตัวจัดการวิทยุ (frameworks/base/core/java/android/hardware/radio/RadioManager.java) จะส่งคําขอไปยังบริการวิทยุกระจายเสียง (BRS) ให้เปิดเซสชันเครื่องรับสัญญาณ จากนั้นจะรวมเซสชันไว้ในเครื่องรับสัญญาณวิทยุ (frameworks/base/core/java/android/hardware/radio/RadioTuner.java) ซึ่งจะแสดงผลในแอป
เครื่องรับสัญญาณวิทยุจะกําหนด API (เช่น ปรับ เลื่อน และยกเลิก) ที่เรียกได้จากแอปวิทยุ และส่งคําขอไปยัง BRS เมธอดการเรียกกลับ (RadioTuner.Callback) ที่กําหนดไว้ใน Radio Radio Tuner จะส่งข้อมูลอัปเดตเกี่ยวกับ HAL ของวิทยุกระจายเสียง เช่น ข้อมูลรายการปัจจุบัน รายการวิทยุ และแอตทริบิวต์ที่กําหนดโดยผู้ให้บริการ จาก BRS ไปยังแอป
บริการวิทยุกระจายเสียง
บริการวิทยุกระจายเสียง (frameworks/base/services/core/java/com/android/server/broadcastradio) เป็นบริการไคลเอ็นต์สำหรับ HAL วิทยุกระจายเสียง BRS จะประสานงานกับเครื่องมือจัดการวิทยุหลายรายการกับ HAL ของวิทยุกระจายเสียง BRS รองรับ HAL interface definition language (HIDL) และ Android interface definition language (AIDL) broadcast radio HAL BRS จะลิงก์กับ AIDL HAL เมื่อมีบริการ AIDL HAL อยู่ มิเช่นนั้นบริการจะลิงก์กับ HIDL HAL BRS จะสร้าง Radio Module สำหรับอินสแตนซ์ HAL แต่ละรายการที่ใช้ได้ (เช่น AM, FM และ DAB)
เครื่องมือจัดการวิทยุแต่ละรายการสามารถขอให้ BRS สร้างเซสชันจูนเนอร์ในโมดูลวิทยุที่เกี่ยวข้องโดยอิงตามประเภทของวิทยุ เซสชันจูนแต่ละเซสชันสามารถเรียกใช้เมธอดต่างๆ เช่น ปรับ เลื่อน และยกเลิก (กำหนดไว้ในอินเทอร์เฟซ HAL) เพื่อดำเนินการกับอินสแตนซ์ HAL ของวิทยุกระจายเสียงที่เกี่ยวข้อง เมื่อเซสชันตัวรับสัญญาณ 1 รายการได้รับการเรียกกลับจากอินสแตนซ์ HAL เกี่ยวกับการอัปเดต HAL เช่น ข้อมูลโปรแกรมปัจจุบัน รายการโปรแกรม แฟล็กการกําหนดค่า และพารามิเตอร์ของผู้ให้บริการ ระบบจะส่งการเรียกกลับเกี่ยวกับการอัปเดตไปยังตัวรับสัญญาณวิทยุทั้งหมดที่ลิงก์กับโมดูลวิทยุเดียวกัน
ออกอากาศวิทยุ HAL
ดูข้อมูลเพิ่มเติมเกี่ยวกับอินเทอร์เฟซ HIDL และ AIDL ของวิทยุกระจายเสียงและความแตกต่างระหว่างอินเทอร์เฟซทั้งสองได้ที่อินเทอร์เฟซ HAL ของวิทยุกระจายเสียง
[[["เข้าใจง่าย","easyToUnderstand","thumb-up"],["แก้ปัญหาของฉันได้","solvedMyProblem","thumb-up"],["อื่นๆ","otherUp","thumb-up"]],[["ไม่มีข้อมูลที่ฉันต้องการ","missingTheInformationINeed","thumb-down"],["ซับซ้อนเกินไป/มีหลายขั้นตอนมากเกินไป","tooComplicatedTooManySteps","thumb-down"],["ล้าสมัย","outOfDate","thumb-down"],["ปัญหาเกี่ยวกับการแปล","translationIssue","thumb-down"],["ตัวอย่าง/ปัญหาเกี่ยวกับโค้ด","samplesCodeIssue","thumb-down"],["อื่นๆ","otherDown","thumb-down"]],["อัปเดตล่าสุด 2025-07-27 UTC"],[],[],null,["# Overview\n\nThe broadcast radio stack consists of the components illustrated in Figure 1.\n**Figure 1.** Broadcast Radio architecture.\n\nRadio reference app\n-------------------\n\nFor details about how to implement radio control, see\n[Radio control implementation](/docs/automotive/radio/radio-control-implementation).\n\nA sample Java radio app (`packages/apps/Car/Radio`) serves as a reference\nimplementation. When the app service starts, it requests Radio Manager to open a Radio Tuner. Then,\nthe app can send requests to the Radio Tuner, such as tuning to a specific radio station, frequency,\nor to seek the next available radio station. The app receives updates from the Radio Manager and\nRadio Tuner in Radio, such as current program information, radio program lists, configurations, and\nvendor-defined parameters. The reference Radio app only supports AM and FM radio. OEMs can modify or\nreplace the Radio app as desired.\n\nRadio Manager\n-------------\n\nWhen the app requests Radio Manager to open a tuner, the Radio Manager\n(`frameworks/base/core/java/android/hardware/radio/RadioManager.java`) requests the\nBroadcast Radio Service (BRS) to open a Tuner session and then wraps the session in a Radio Tuner\n(`frameworks/base/core/java/android/hardware/radio/RadioTuner.java`), which is returned\nto the app.\n\nThe Radio Tuner defines APIs (such as tune, step, and cancel) that can be called from radio apps\nand send requests to BRS. Callback methods (`RadioTuner.Callback`) defined in Radio\nTuner send updates about the broadcast radio HAL, such as current program information, program\nlists, and vendor-defined parameters, from the BRS to apps.\n\nBroadcast Radio Service\n-----------------------\n\nThe Broadcast Radio Service\n(`frameworks/base/services/core/java/com/android/server/broadcastradio`) is the client\nservice for Broadcast Radio HAL. The BRS coordinates multiple Radio Managers with Broadcast Radio\nHALs. The BRS supports\n[HAL interface definition language (HIDL)](/docs/core/architecture/hidl) and\n[Android interface definition language (AIDL)](/docs/core/architecture/aidl) broadcast\nradio HALs. The BRS links to the AIDL HAL when any AIDL HAL service exists;\notherwise, the service links to the HIDL HAL. The BRS creates a Radio Module\nfor each available HAL instance (such as AM, FM, and DAB).\n\nEach Radio Manager can request the BRS to create a tuner session on the\ncorresponding Radio Module, based on the type of radio. Each tuner session can call methods, such\nas tune, step, and cancel (defined in HAL interfaces) to perform operations on the\ncorresponding broadcast radio HAL instance. When one tuner session receives a callback from the HAL\ninstance on a HAL update, such as current program info, program list, configuration flags and,\nvendor parameters, callbacks about the update are sent to all Radio Tuners linked to the same\nRadio Module.\n\nBroadcast Radio HAL\n-------------------\n\n| In Android 13 and lower, versions of the BRS are provided in HIDL and AIDL. New features are added **only** to releases of Android 14 and higher.\n\nTo learn more about the HIDL and AIDL interfaces of broadcast radio and the differences between\nthe two, see\n[Broadcast Radio HAL interface](/docs/automotive/radio/broadcast-radio-hal)."]]