// 用ate工具校准过的话,工具会往序列号的字段写入标致位.
// 没有校准:序列号的60、61位为空,校准失败为00,校准成功为10
boolean isCorrectNVRAM() {
String barCode = getSystemProperties("gsm.serial");
if (barCode != null && barCode.length() >= 62)
return barCode.substring(60, 62).equals("10");
return false;
}