blob: 7dab7552f4dec324c220d284078ec94a84f4ef09 [file] [log] [blame]
lh9ed821d2023-04-07 01:36:19 -07001/**
2 *
3 * @file amt.h
4 * @brief
5 * This file is part of FTM.
6 * AMT¹¤¾ßUE²à´úÀíÄ£¿é
7 * Êý¾ÝÀàÐͶ¨Òå¼°¶ÔÍâ½Ó¿Ú˵Ã÷
8 *
9 * @details
10 * @author Tools Team.
11 * @email
12 * @copyright Copyright (C) 2013 Sanechips Technology Co., Ltd.
13 * @warning
14 * @date 2019/02/02
15 * @version 1.1
16 * @pre
17 * @post
18 *
19 * @par
20 * Change History :
21 * ---------------------------------------------------------------------------
22 * date version author description
23 * ---------------------------------------------------------------------------
24 * 2015/01/19 1.0 lan.kai Create file
25 * 2019/02/02 1.1 jiang.fenglin ÐÞ¸Ä×¢ÊÍ·½Ê½Îªdoxygen
26 * ---------------------------------------------------------------------------
27 *
28 *
29 */
30
31#ifndef _AMT_H_
32#define _AMT_H_
33
34typedef UINT32 (*pfBaseBand)(UINT16 msg_id, UINT8* buf, UINT32 buf_len);
35VOID AmtAgent_ComposeAndProcess(UINT8 *buf, UINT32 buf_len);
36typedef UINT32 (*pfSendDataToAmtApp)( UINT8* buf, UINT32 buf_len);
37void RegSendDataToAmtAppFunction(pfSendDataToAmtApp pf);
38
39
40
41
42
43#endif