Subversion Repositories chibiosIgnition

Rev

Rev 6 | Rev 18 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 6 Rev 7
Line 39... Line 39...
39
#ifndef _HALCONF_H_
39
#ifndef _HALCONF_H_
40
#define _HALCONF_H_
40
#define _HALCONF_H_
41
 
41
 
42
#include "mcuconf.h"
42
#include "mcuconf.h"
43
 
43
 
-
 
44
/* Need to do this somewhere */
-
 
45
 
44
/**
46
/**
45
 * @brief   Enables the TM subsystem.
47
 * @brief   Enables the TM subsystem.
46
 */
48
 */
47
#if !defined(HAL_USE_TM) || defined(__DOXYGEN__)
49
#if !defined(HAL_USE_TM) || defined(__DOXYGEN__)
48
#define HAL_USE_TM                  TRUE
50
#define HAL_USE_TM                  TRUE
Line 141... Line 143...
141
 
143
 
142
/**
144
/**
143
 * @brief   Enables the SERIAL over USB subsystem.
145
 * @brief   Enables the SERIAL over USB subsystem.
144
 */
146
 */
145
#if !defined(HAL_USE_SERIAL_USB) || defined(__DOXYGEN__)
147
#if !defined(HAL_USE_SERIAL_USB) || defined(__DOXYGEN__)
146
#define HAL_USE_SERIAL_USB          FALSE
148
#define HAL_USE_SERIAL_USB          TRUE
147
#endif
149
#endif
148
 
150
 
-
 
151
#define HAL_USE_BULK_USB TRUE
-
 
152
 
149
/**
153
/**
150
 * @brief   Enables the SPI subsystem.
154
 * @brief   Enables the SPI subsystem.
151
 */
155
 */
152
#if !defined(HAL_USE_SPI) || defined(__DOXYGEN__)
156
#if !defined(HAL_USE_SPI) || defined(__DOXYGEN__)
153
#define HAL_USE_SPI                 TRUE
157
#define HAL_USE_SPI                 TRUE
Line 162... Line 166...
162
 
166
 
163
/**
167
/**
164
 * @brief   Enables the USB subsystem.
168
 * @brief   Enables the USB subsystem.
165
 */
169
 */
166
#if !defined(HAL_USE_USB) || defined(__DOXYGEN__)
170
#if !defined(HAL_USE_USB) || defined(__DOXYGEN__)
167
#define HAL_USE_USB                 FALSE
171
#define HAL_USE_USB                 TRUE
168
#endif
172
#endif
169
 
173
 
170
/*===========================================================================*/
174
/*===========================================================================*/
171
/* ADC driver related settings.                                              */
175
/* ADC driver related settings.                                              */
172
/*===========================================================================*/
176
/*===========================================================================*/