From 8dcb6287b592f223003e0486967ca67440848d67 Mon Sep 17 00:00:00 2001 From: alienwalker Date: Wed, 12 Apr 2023 10:43:35 +0800 Subject: [PATCH] =?UTF-8?q?remove:=E5=A4=9A=E4=BD=99api?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- components/mobile/luat_lib_mobile.c | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/components/mobile/luat_lib_mobile.c b/components/mobile/luat_lib_mobile.c index 4b718c7d..3751ab0f 100644 --- a/components/mobile/luat_lib_mobile.c +++ b/components/mobile/luat_lib_mobile.c @@ -454,22 +454,6 @@ static int l_mobile_enbid(lua_State* L) { return 1; } -/** -获取cellid -@api mobile.cellid() -@return int 当前cellid值,若失败返回-1 - */ -static int l_mobile_cellid(lua_State* L) { - uint32_t cei; - if (luat_mobile_get_service_cei(&cei) == 0) { - lua_pushinteger(L, cei); - } - else { - lua_pushinteger(L, -1); - } - return 1; -} - /** 进出飞行模式 @api mobile.flymode(index, enable)