⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 ateric.c

📁 NOKIA手机开发包
💻 C
字号:
/*  $Id: ateric.c,v 1.13 2003/03/06 21:17:12 pkot Exp $  G N O K I I  A Linux/Unix toolset and driver for mobile phones.  This file is part of gnokii.  Gnokii is free software; you can redistribute it and/or modify  it under the terms of the GNU General Public License as published by  the Free Software Foundation; either version 2 of the License, or  (at your option) any later version.  Gnokii is distributed in the hope that it will be useful,  but WITHOUT ANY WARRANTY; without even the implied warranty of  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the  GNU General Public License for more details.  You should have received a copy of the GNU General Public License  along with gnokii; if not, write to the Free Software  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA  Copyright 2001 Manfred Jonsson <manfred.jonsson@gmx.de>  This file provides functions specific to at commands on ericsson  phones. See README for more details on supported mobile phones.*/#include <string.h>#include <stdlib.h>#include <ctype.h>#include "config.h"#include "compat.h"#include "misc.h"#include "gnokii.h"#include "phones/generic.h"#include "phones/atgen.h"#include "phones/ateric.h"#include "links/atbus.h"static gn_error GetMemoryStatus(gn_data *data, struct gn_statemachine *state){	gn_error ret;		ret = at_memory_type_set(data->memory_status->memory_type, state);	if (ret)		return ret;	if (sm_message_send(11, GN_OP_GetMemoryStatus, "AT+CPBR=?\r\n", state))		return GN_ERR_NOTREADY;	return sm_block_no_retry(GN_OP_GetMemoryStatus, data, state);}static gn_error ReplyMemoryStatus(int messagetype, unsigned char *buffer, int length, gn_data *data, struct gn_statemachine *state){	at_line_buffer buf;	char *pos;	buf.line1 = buffer;	buf.length = length;	splitlines(&buf);	if (buf.line1 == NULL)		return GN_ERR_INVALIDMEMORYTYPE;	if (data->memory_status) {		if (strstr(buf.line2, "+CPBR")) {			pos = strchr(buf.line2, '-');			if (pos) {				data->memory_status->used = atoi(++pos);				data->memory_status->free = 0;			} else {				return GN_ERR_NOTSUPPORTED;			}		}	}	return GN_ERR_NONE;}void at_ericsson_init(char* foundmodel, char* setupmodel, struct gn_statemachine *state){	at_insert_recv_function(GN_OP_GetMemoryStatus, ReplyMemoryStatus, state);	at_insert_send_function(GN_OP_GetMemoryStatus, GetMemoryStatus, state);}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -