EICU. Temporal code moved to main chibios repo.

This commit is contained in:
barthess 2015-03-13 23:19:12 +03:00
parent 6f9bf595fd
commit 22819b0f46
1 changed files with 0 additions and 72 deletions

View File

@ -25,78 +25,6 @@
#if HAL_USE_EICU || defined(__DOXYGEN__)
/*===========================================================================*/
/* Temporal definitions to be moved in main repository. */
/*===========================================================================*/
#define STM32_TIM10_NUMBER 25
#define STM32_TIM13_NUMBER 44
#define STM32_TIM10_HANDLER VectorA4
#define STM32_TIM13_HANDLER VectorF0
/**
* @brief Enables the TIM10 peripheral clock.
* @note The @p lp parameter is ignored in this family.
*
* @param[in] lp low power enable flag
*
* @api
*/
#define rccEnableTIM10(lp) rccEnableAPB2(RCC_APB2ENR_TIM10EN, lp)
/**
* @brief Disables the TIM10 peripheral clock.
* @note The @p lp parameter is ignored in this family.
*
* @param[in] lp low power enable flag
*
* @api
*/
#define rccDisableTIM10(lp) rccDisableAPB2(RCC_APB2ENR_TIM10EN, lp)
/**
* @brief Resets the TIM10 peripheral.
*
* @api
*/
#define rccResetTIM10() rccResetAPB2(RCC_APB2RSTR_TIM10RST)
/**
* @brief Enables the TIM13 peripheral clock.
* @note The @p lp parameter is ignored in this family.
*
* @param[in] lp low power enable flag
*
* @api
*/
#define rccEnableTIM13(lp) rccEnableAPB1(RCC_APB1ENR_TIM13EN, lp)
/**
* @brief Disables the TIM13 peripheral clock.
* @note The @p lp parameter is ignored in this family.
*
* @param[in] lp low power enable flag
*
* @api
*/
#define rccDisableTIM13(lp) rccDisableAPB1(RCC_APB1ENR_TIM13EN, lp)
/**
* @brief Resets the TIM13 peripheral.
*
* @api
*/
#define rccResetTIM13() rccResetAPB1(RCC_APB1RSTR_TIM13RST)
/*===========================================================================*/
/* Driver constants. */
/*===========================================================================*/