NetBurner 3.1
sdioBsp.h
1 /*NB_REVISION*/
2 
3 /*NB_COPYRIGHT*/
4 
5 #ifndef _SDIOBSP_H
6 #define _SDIOBSP_H
7 
8 /*
9  ******************************************************************************
10  *
11  * Debugging
12  *
13  ******************************************************************************
14  */
15 #define SDIO_DEBUG_INT (1)
16 
17 /*
18  ******************************************************************************
19  *
20  * C Platform Functions
21  *
22  ******************************************************************************
23  */
24 
25 /*
26  *****************************************************************************-
27  *
28  * Set up access
29  *
30  * Parameters:
31  * None
32  *
33  * Return:
34  * TRUE if OK, FALSE otherwise
35  *
36  * Notes:
37  * None
38  *
39  *****************************************************************************-
40  */
41 BOOL SdioBspSetupHardware(void);
42 
43 /*
44  *****************************************************************************-
45  *
46  * Assert SDIO chip select/deselect
47  *
48  * Parameters:
49  * pin - Pin number, 0 none
50  *
51  * Return:
52  * None
53  *
54  * Notes:
55  * Implemented for MOD-DEV-70 and MOD-DEV-100
56  *
57  *****************************************************************************-
58  */
59 void SdioAssertChipSelect(int pin);
60 void SdioDeassertChipSelect(int pin);
61 
62 #endif /* _SDIOBSP_H */