发布于 2014-01-28 17:34:37
基于Android SDK 4.3(API 18)的源码,使用了宽带CQI。
在android.telephony.SignalStrength类中,CQI作为单个整数进行维护。这个类是其他类(即android.telephony.CellSignalStrengthLte)查询CQI的主类。
CQI维护为(SignalStrength.java中的第64行):
private int mLteCqi;现在,根据规范,宽带CQI保持在4比特中,并在PUCCH或PUSH消息中发送。如果使用的是“子带CQI”,它还必须维护不能放入整数的子带的信息。它通常维护在一个向量中,如推荐的:http://my.safaribooksonline.com/book/electrical-engineering/communications-engineering/9780137033638/physical-layer-procedures-and-scheduling/ch09lev1sec2
此外,有关证实这一假设的更多信息,请访问:http://lteuniversity.com/get_trained/expert_opinion1/b/hongyanlei/archive/2009/08/06/cqi-reporting-in-lte.aspx
希望这能有所帮助。
https://stackoverflow.com/questions/19898530
复制相似问题