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

📄 atbosch.c

📁 NOKIA手机开发包
💻 C
字号:
/*  $Id: atbosch.c,v 1.10 2003/01/21 11:07:58 ladis 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 2002 Ladislav Michl <ladis@linux-mips.org>  This file provides functions specific to AT commands on Bosch phones.  See README for more details on supported mobile phones.*/#include <string.h>#include <stdlib.h>#include "gnokii-internal.h"#include "phones/generic.h"#include "phones/atgen.h"#include "phones/atbosch.h"#include "links/atbus.h"static gn_error FakeCharset(gn_data *data, struct gn_statemachine *state){	AT_DRVINST(state)->charset = AT_CHAR_GSM;	return GN_ERR_NONE;}static gn_error Unsupported(gn_data *data, struct gn_statemachine *state){	return GN_ERR_NOTSUPPORTED;}static at_recv_function_type replygetsms;/*  * Bosch 909 (and probably also Bosch 908) doesn't provide SMSC information * We insert it here to satisfy generic PDU SMS receiving function in atgen.c */static gn_error ReplyGetSMS(int type, unsigned char *buffer, int length,			    gn_data *data, struct gn_statemachine *state){	int i, ofs, len;	char *pos, *lenpos = NULL;	char tmp[8];	if (buffer[0] != GN_AT_OK)		return GN_ERR_INVALIDLOCATION;	pos = buffer + 1;	for (i = 0; i < 2; i++) {		pos = findcrlf(pos, 1, length);		if (!pos)			return GN_ERR_INTERNALERROR;		pos = skipcrlf(pos);		if (i == 0) {			int j;			lenpos = pos;			for (j = 0; j < 2; j++) {				lenpos = strchr(lenpos, ',');				if (!lenpos)					return GN_ERR_INTERNALERROR;				lenpos++;			}		}	}	if (!lenpos) return GN_ERR_INTERNALERROR;	len = atoi(lenpos);	/* Do we need one more digit? */	if (len / 10 < (len + 2) / 10)		memmove(lenpos + 1, lenpos, lenpos - (char*)buffer);	ofs = snprintf(tmp, 8, "%d", len + 2);	if (ofs < 1)		return GN_ERR_INTERNALERROR; /* something went very wrong */	memcpy(lenpos, tmp, ofs);		/* Insert zero length SMSC field */	ofs = pos - (char*)buffer;	memmove(pos + 2, pos, length - ofs);	buffer[ofs]   = '0';	buffer[ofs+1] = '0';	return (*replygetsms)(type, buffer, length + 2, data, state);}void at_bosch_init(char* foundmodel, char* setupmodel, struct gn_statemachine *state){	at_insert_send_function(GN_OP_AT_GetCharset, FakeCharset, state);	at_insert_send_function(GN_OP_AT_SetCharset, FakeCharset, state);	replygetsms = at_insert_recv_function(GN_OP_GetSMS, ReplyGetSMS, state);	/* phone lacks many usefull commands :( */	at_insert_send_function(GN_OP_GetBatteryLevel, Unsupported, state);	at_insert_send_function(GN_OP_GetRFLevel, Unsupported, state);	at_insert_send_function(GN_OP_GetSecurityCodeStatus, Unsupported, state);	at_insert_send_function(GN_OP_EnterSecurityCode, Unsupported, state);	at_insert_send_function(GN_OP_SaveSMS, Unsupported, state);}

⌨️ 快捷键说明

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