WXK
2025-03-25 4a0afa1557e0189d8d32cc59f7a246f5188bb8e6
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
/*******************************************************************************
 * File Name         : TONE.h
 * Description       :
 * Created on        : 2022Äê10ÔÂ17ÈÕ
 * Author            : www.hido-studio.com
 *******************************************************************************/
 
#ifndef FML_INTERNET_TONE_H_
#define FML_INTERNET_TONE_H_
/*******************************************************************************
 *                              Include Files                                  *
 *******************************************************************************/
#include "HIDO_TypeDef.h"
#include "HIDO_VLQueue.h"
 
/*******************************************************************************
 *                                  Macro                                      *
 *******************************************************************************/
 
/*******************************************************************************
 *                             Type Definition                                 *
 *******************************************************************************/
 
/*******************************************************************************
 *                             Global Function                                 *
 *******************************************************************************/
 
/*******************************************************************************
 * Function Name     : TONE_Play
 * Description       :
 * Input             :
 * Output            :
 * Return            :
 * Author            : hido.ltd
 * Modified Date:    : 2022Äê4ÔÂ30ÈÕ
 *******************************************************************************/
HIDO_INT32 TONE_Play(HIDO_UINT8 *_pu8Data, HIDO_UINT32 _u32Len);
 
/*******************************************************************************
 * Function Name     : TONE_GetNextData
 * Description       :
 * Input             :
 * Output            :
 * Return            :
 * Author            : hido.ltd
 *******************************************************************************/
HIDO_VLQMemberStruct *TONE_GetNextData(HIDO_VOID);
 
/*******************************************************************************
 * Function Name     : TONE_ReleaseData
 * Description       :
 * Input             :
 * Output            :
 * Return            :
 * Author            : hido.ltd
 *******************************************************************************/
HIDO_INT32 TONE_ReleaseData(HIDO_VLQMemberStruct *_pstData);
 
/*******************************************************************************
 * Function Name     : TONE_Init
 * Description       :
 * Input             :
 * Output            :
 * Return            :
 * Author            : hido.ltd
 *******************************************************************************/
HIDO_INT32 TONE_Init(HIDO_VOID);
 
#endif /* FML_INTERNET_TONE_H_ */