📄 m2bus.h
字号:
/* $Id: m2bus.h,v 1.7 2003/03/06 21:38:46 pkot Exp $ G N O K I I A Linux/Unix toolset and driver for Nokia 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 (C) 2000 Hugh Blemings & Pavel Jan韐 ml. Copyright (C) 2000 Chris Kemp Copyright (C) 2002 BORBELY Zoltan This file provides an API for accessing functions via m2bus. See README for more details on supported mobile phones. The various routines are called M2BUS_(whatever).*/#ifndef _gnokii_links_m2bus_h#define _gnokii_links_m2bus_h#include <time.h>#include "config.h"#include "compat.h"#include "gnokii.h"#ifdef WIN32# include <sys/types.h>#endif/* This byte is at the beginning of all GSM Frames sent over M2BUS to Nokia phones. This may have to become a phone dependant parameter... */#define M2BUS_FRAME_ID 0x1f/* This byte is at the beginning of all GSM Frames sent over IR to Nokia phones. */#define M2BUS_IR_FRAME_ID 0x14/* Nokia mobile phone. */#define M2BUS_DEVICE_PHONE 0x00/* Our PC. */#define M2BUS_DEVICE_PC 0x1denum m2bus_rx_state { M2BUS_RX_Sync, M2BUS_RX_Discarding, M2BUS_RX_GetDestination, M2BUS_RX_GetSource, M2BUS_RX_GetType, M2BUS_RX_GetLength1, M2BUS_RX_GetLength2, M2BUS_RX_GetMessage};typedef struct { enum m2bus_rx_state state; int buffer_count; struct timeval time_now; struct timeval time_last; int message_source; int message_destination; int message_type; int message_length; unsigned char checksum; unsigned char *message_buffer;} m2bus_incoming_message;typedef struct{ m2bus_incoming_message i; u8 request_sequence_number;} m2bus_link;#define M2BUSINST(s) ((m2bus_link *)((s)->link.link_instance))gn_error m2bus_initialise(struct gn_statemachine *state);#endif /* #ifndef _gnokii_links_m2bus_h */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -