自 2025 年 3 月 27 日起,我们建议您使用 android-latest-release
而非 aosp-main
构建 AOSP 并为其做出贡献。如需了解详情,请参阅 AOSP 的变更。
小基站支持
使用集合让一切井井有条
根据您的偏好保存内容并对其进行分类。
发布时搭载 Android 11 或更高版本的设备能够通过基站识别 API 中的方法,获取有关基站封闭式订阅者群组 (CSG) 的信息,从而为 CSG 提供支持。这对于通过封闭式订阅者群组管理小基站的移动网络运营商 (MNO) 来说非常有用。有关 CSG 的信息位于 ClosedSubscriberGroupInfo
类中。
实现
如需在搭载 Android 11 或更高版本的设备上支持 CGG,请在 radio/1.5/types.hal
中实现以下函数。
ClosedSubscriberGroupInfo
:选择性地包含在每个 CellIdentity
实例中。此结构用于提供有关基站所属的封闭式订阅者群组(如果有)的详细信息。这通常用于识别小基站(例如个人 LTE 设备),也可用于 CBRS LTE 等部署。
CellIdentityLte
:支持列出一系列其他 PLMN-ID。
CellIdentityWcdma
:支持列出一系列其他 PLMN-ID。
CellIdentityTdscdma
:支持列出一系列其他 PLMN-ID。
RegStateResult
:包括一个经过更新的 CellIdentity
结构和一个用于指示 RPLMN 的字段。
验证
如需测试实现情况,请运行以下 CTS 测试:CellInfoTest
。
本页面上的内容和代码示例受内容许可部分所述许可的限制。Java 和 OpenJDK 是 Oracle 和/或其关联公司的注册商标。
最后更新时间 (UTC):2025-04-04。
[null,null,["最后更新时间 (UTC):2025-04-04。"],[],[],null,["# Small cell support\n\nDevices launched with Android 11 or higher can provide\nsupport for closed subscriber groups (CSGs) through methods in the\n[cell identification APIs](https://developer.android.com/reference/android/telephony/CellIdentity)\nthat get information about a cell's CSG information. This is useful for mobile\nnetwork operators (MNOs) that manage small cells through closed subscriber\ngroups. Information about CSGs is represented in the\n[`ClosedSubscriberGroupInfo`](https://developer.android.com/reference/android/telephony/ClosedSubscriberGroupInfo)\nclass.\n\nImplementation\n--------------\n\nTo support CGGs on devices running Android 11 or\nhigher, implement the following functions in\n[`radio/1.5/types.hal`](https://android.googlesource.com/platform/hardware/interfaces/+/refs/heads/android16-release/radio/1.5/types.hal).\n\n- `ClosedSubscriberGroupInfo`: Included optionally with every `CellIdentity` instance. This structure is used to provide details about the closed subscriber group to which a cell belongs, if any. This is commonly used to identity *small cells* such as personal LTE devices. It can also be used in deployments such as CBRS LTE.\n- `CellIdentityLte`: Supports a list of additional PLMN-IDs.\n- `CellIdentityWcdma`: Supports a list of additional PLMN-IDs.\n- `CellIdentityTdscdma`: Supports a list of additional PLMN-IDs.\n- `RegStateResult`: Includes an updated `CellIdentity` structure and a field to indicate the RPLMN.\n\nValidation\n----------\n\nTo test your implementation, run the following CTS test:\n[`CellInfoTest`](https://android.googlesource.com/platform/cts/+/3c3d33a/tests/tests/telephony/src/android/telephony/cts/CellInfoTest.java)."]]