Subversion Repositories NaviCtrl

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
1 ingob 1
/******************** (C) COPYRIGHT 2006 STMicroelectronics ********************
2
* File Name          : 91x_lib.h
3
* Author             : MCD Application Team
4
* Date First Issued  : 05/18/2006 : Version 1.0
5
* Description        : Used to include the peripherals header file in the
6
*                      user application.
7
********************************************************************************
8
* History:
9
* 05/22/2007 : Version 1.2
10
* 05/24/2006 : Version 1.1
11
* 05/18/2006 : Version 1.0
12
********************************************************************************
13
* THE PRESENT SOFTWARE WHICH IS FOR GUIDANCE ONLY AIMS AT PROVIDING CUSTOMERS WITH
14
* CODING INFORMATION REGARDING THEIR PRODUCTS IN ORDER FOR THEM TO SAVE TIME. AS
15
* A RESULT, STMICROELECTRONICS SHALL NOT BE HELD LIABLE FOR ANY DIRECT, INDIRECT
16
* OR CONSEQUENTIAL DAMAGES WITH RESPECT TO ANY CLAIMS ARISING FROM THE CONTENT
17
* OF SUCH SOFTWARE AND/OR THE USE MADE BY CUSTOMERS OF THE CODING INFORMATION
18
* CONTAINED HEREIN IN CONNECTION WITH THEIR PRODUCTS.
19
*******************************************************************************/
20
 
21
#ifndef __91x_LIB_H
22
#define __91x_LIB_H
23
 
24
#include "91x_map.h"
25
#include "91x_conf.h"
26
 
27
#ifdef _AHBAPB
28
  #include "91x_ahbapb.h"
29
#endif /* _AHBAPB */
30
 
31
#ifdef _EMI
32
  #include "91x_emi.h"
33
#endif /* _EMI */
34
 
35
#ifdef _DMA
36
  #include "91x_dma.h"
37
#endif /* _DMA */
38
 
39
#ifdef _FMI
40
  #include "91x_fmi.h"
41
#endif /* _FMI */
42
 
43
#ifdef _VIC
44
  #include "91x_vic.h"
45
#endif /* _VIC */
46
 
47
#ifdef _WIU
48
  #include "91x_wiu.h"
49
#endif /* _WIU */
50
 
51
#ifdef _TIM
52
  #include "91x_tim.h"
53
#endif /* _TIM */
54
 
55
#ifdef _GPIO
56
  #include "91x_gpio.h"
57
#endif /* _GPIO */
58
 
59
#ifdef _RTC
60
  #include "91x_rtc.h"
61
#endif /* _RTC */
62
 
63
#ifdef _SCU
64
  #include "91x_scu.h"
65
#endif /* _SCU */
66
 
67
#ifdef _UART
68
  #include "91x_uart.h"
69
#endif /* _UART */
70
 
71
#ifdef _SSP
72
  #include "91x_ssp.h"
73
#endif /* _SSP */
74
 
75
#ifdef _CAN
76
  #include "91x_can.h"
77
#endif /* _CAN */
78
 
79
#ifdef _ADC
80
  #include "91x_adc.h"
81
#endif /* _ADC */
82
 
83
#ifdef _WDG
84
  #include "91x_wdg.h"
85
#endif /* _WDG */
86
 
87
#ifdef _I2C
88
  #include "91x_i2c.h"
89
#endif /* _I2C */
90
 
91
#ifdef _WIU
92
  #include "91x_wiu.h"
93
#endif
94
 
95
#ifdef _MC
96
  #include "91x_mc.h"
97
#endif
98
 
99
#ifdef _ENET
100
//  #include "91x_enet.h"  
101
#endif 
102
 
103
/* Exported types ------------------------------------------------------------*/
104
/* Exported constants --------------------------------------------------------*/
105
/* Module private variables --------------------------------------------------*/
106
/* Exported macro ------------------------------------------------------------*/
107
/* Private functions ---------------------------------------------------------*/
108
/* Exported functions ------------------------------------------------------- */
109
 
110
 void libdebug( void );
111
 
112
 
113
#endif /* __91x_LIB_H */
114
 
115
/******************* (C) COPYRIGHT 2006 STMicroelectronics *****END OF FILE****/