lh | 9ed821d | 2023-04-07 01:36:19 -0700 | [diff] [blame^] | 1 | /**
|
| 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 |
|
| 34 | typedef UINT32 (*pfBaseBand)(UINT16 msg_id, UINT8* buf, UINT32 buf_len);
|
| 35 | VOID AmtAgent_ComposeAndProcess(UINT8 *buf, UINT32 buf_len);
|
| 36 | typedef UINT32 (*pfSendDataToAmtApp)( UINT8* buf, UINT32 buf_len);
|
| 37 | void RegSendDataToAmtAppFunction(pfSendDataToAmtApp pf);
|
| 38 |
|
| 39 |
|
| 40 |
|
| 41 |
|
| 42 |
|
| 43 | #endif
|