summaryrefslogtreecommitdiffstats
path: root/bta/include/bta_sys_co.h
blob: 2b821538e076cbffb56e98e0a401e0269cfafd06 (plain)
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
/*****************************************************************************
**
**  Name:           bta_sys_co.h
**
**  Description:    This is the interface file for system callout
**                  functions.
**
**  Copyright (c) 2010, Broadcom Corp., All Rights Reserved.
**  Broadcom Bluetooth Core. Proprietary and confidential.
**
*****************************************************************************/
#ifndef BTA_SYS_CO_H
#define BTA_SYS_CO_H

#include "bta_sys.h"



/*****************************************************************************
**  Function Declarations
*****************************************************************************/


/*******************************************************************************
**
** Function         bta_sys_hw_co_enable
**
** Description      This function is called by the stack to power up the HW                
**
** Returns          void
**
*******************************************************************************/
BTA_API void bta_sys_hw_co_enable( tBTA_SYS_HW_MODULE module );

/*******************************************************************************
**
** Function         bta_sys_hw_co_disable
**
** Description     This function is called by the stack to power down the HW                
**
** Returns          void
**
*******************************************************************************/
BTA_API void bta_sys_hw_co_disable( tBTA_SYS_HW_MODULE module );


#endif