Added macro HAL_IMPLEMENTS_COUNTERS to all HAL driver implementations.

git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@3778 35acf78f-673a-0410-8e92-d51de3d6d3f4
master
gdisirio 2012-01-09 19:43:26 +00:00
parent a2708c091b
commit e9e6cdc67c
12 changed files with 56 additions and 1 deletions

View File

@ -36,6 +36,11 @@
/* Driver constants. */ /* Driver constants. */
/*===========================================================================*/ /*===========================================================================*/
/**
* @brief Defines the support for realtime counters in the HAL.
*/
#define HAL_IMPLEMENTS_COUNTERS FALSE
/** /**
* @brief Platform name. * @brief Platform name.
*/ */

View File

@ -33,6 +33,11 @@
/* Driver constants. */ /* Driver constants. */
/*===========================================================================*/ /*===========================================================================*/
/**
* @brief Defines the support for realtime counters in the HAL.
*/
#define HAL_IMPLEMENTS_COUNTERS FALSE
/** /**
* @brief Platform name. * @brief Platform name.
*/ */

View File

@ -36,6 +36,11 @@
/* Driver constants. */ /* Driver constants. */
/*===========================================================================*/ /*===========================================================================*/
/**
* @brief Defines the support for realtime counters in the HAL.
*/
#define HAL_IMPLEMENTS_COUNTERS FALSE
/** /**
* @brief Platform name. * @brief Platform name.
*/ */

View File

@ -36,6 +36,11 @@
/* Driver constants. */ /* Driver constants. */
/*===========================================================================*/ /*===========================================================================*/
/**
* @brief Defines the support for realtime counters in the HAL.
*/
#define HAL_IMPLEMENTS_COUNTERS FALSE
/** /**
* @brief Platform name. * @brief Platform name.
*/ */

View File

@ -36,6 +36,11 @@
/* Driver constants. */ /* Driver constants. */
/*===========================================================================*/ /*===========================================================================*/
/**
* @brief Defines the support for realtime counters in the HAL.
*/
#define HAL_IMPLEMENTS_COUNTERS FALSE
/** /**
* @brief Platform name. * @brief Platform name.
*/ */

View File

@ -35,6 +35,11 @@
/* Driver constants. */ /* Driver constants. */
/*===========================================================================*/ /*===========================================================================*/
/**
* @brief Defines the support for realtime counters in the HAL.
*/
#define HAL_IMPLEMENTS_COUNTERS FALSE
/** /**
* @brief Platform name. * @brief Platform name.
*/ */

View File

@ -37,6 +37,11 @@
/* Driver constants. */ /* Driver constants. */
/*===========================================================================*/ /*===========================================================================*/
/**
* @brief Defines the support for realtime counters in the HAL.
*/
#define HAL_IMPLEMENTS_COUNTERS FALSE
/** /**
* @brief Platform name. * @brief Platform name.
*/ */

View File

@ -35,6 +35,11 @@
/* Driver constants. */ /* Driver constants. */
/*===========================================================================*/ /*===========================================================================*/
/**
* @brief Defines the support for realtime counters in the HAL.
*/
#define HAL_IMPLEMENTS_COUNTERS FALSE
/** /**
* @brief Platform name. * @brief Platform name.
*/ */

View File

@ -61,6 +61,11 @@
/* Driver constants. */ /* Driver constants. */
/*===========================================================================*/ /*===========================================================================*/
/**
* @brief Defines the support for realtime counters in the HAL.
*/
#define HAL_IMPLEMENTS_COUNTERS FALSE
/** /**
* @brief Platform name. * @brief Platform name.
*/ */

View File

@ -57,6 +57,11 @@
/* Driver constants. */ /* Driver constants. */
/*===========================================================================*/ /*===========================================================================*/
/**
* @brief Defines the support for realtime counters in the HAL.
*/
#define HAL_IMPLEMENTS_COUNTERS FALSE
/** /**
* @brief Platform name. * @brief Platform name.
*/ */

View File

@ -36,6 +36,11 @@
/* Driver constants. */ /* Driver constants. */
/*===========================================================================*/ /*===========================================================================*/
/**
* @brief Defines the support for realtime counters in the HAL.
*/
#define HAL_IMPLEMENTS_COUNTERS FALSE
/** /**
* @brief Platform name. * @brief Platform name.
*/ */

View File

@ -13,7 +13,7 @@ X Revision of the RTCv1 driver implementation.
X Revision of the RTCv2 driver implementation. X Revision of the RTCv2 driver implementation.
- Consistency check of all STM32xx mcuconf.h files. - Consistency check of all STM32xx mcuconf.h files.
- Fixing issue with Simulator and CH_DBG_SYSTEM_STATE_CHECK option. - Fixing issue with Simulator and CH_DBG_SYSTEM_STATE_CHECK option.
- SD driver port to STM32F2 and STM32F4. - SDC driver port to STM32F2 and STM32F4.
- CAN driver test on STM32F4. - CAN driver test on STM32F4.
- USB driver test on STM32Lxx. - USB driver test on STM32Lxx.