csr_sms.h

来自「GSM手机设计软件代码」· C头文件 代码 · 共 51 行

H
51
字号
/* 
+----------------------------------------------------------------------------- 
|  Project :  
|  Modul   :  J:\g23m-gsm\csr\sms\csr_sms.h
+----------------------------------------------------------------------------- 
|  Copyright 2002 Texas Instruments Berlin, AG 
|                 All rights reserved. 
| 
|                 This file is confidential and a trade secret of Texas 
|                 Instruments Berlin, AG 
|                 The receipt of or possession of this file does not convey 
|                 any rights to reproduce or disclose its contents or to 
|                 manufacture, use, or sell anything it may describe, in 
|                 whole, or in part, without the specific written consent of 
|                 Texas Instruments Berlin, AG. 
+----------------------------------------------------------------------------- 
|  Purpose :  
+----------------------------------------------------------------------------- 
*/ 
#ifndef CSR_SMS_INTERFACE_H
#define CSR_SMS_INTERFACE_H
#include "csr.h"

typedef struct
{
  CallReference         callReference;
  Boolean               csrSmsOnlyCall;
  CalledPartyBcdNum     calledBcdNumber;
} CsrSmsPosnDataReq;

typedef struct
{
  CallReference         callReference;
  Boolean               cursorDataValid;
  UInt8 	            cursorSmsText[140];
} CsrSmsPosnDataCnf;

typedef struct csrSmsVersionIdTag
{
  UInt8	smsVersion;
  UInt8 codeVersion;
} csrSmsVersionId;

/* Function Declarations */
csrSmsVersionId createSMS(const CalledPartyBcdNum  * const bcdNum,
                          const UInt8                      mType,
                                UInt8              * const text,
                          const TimingData         *       message);
#endif

⌨️ 快捷键说明

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