From 22819b0f466a94a99cd65c970cea5623235d179d Mon Sep 17 00:00:00 2001 From: barthess Date: Fri, 13 Mar 2015 23:19:12 +0300 Subject: EICU. Temporal code moved to main chibios repo. --- os/hal/ports/STM32/LLD/eicu_lld.h | 72 --------------------------------------- 1 file changed, 72 deletions(-) (limited to 'os') diff --git a/os/hal/ports/STM32/LLD/eicu_lld.h b/os/hal/ports/STM32/LLD/eicu_lld.h index 28878ce..45d9b4e 100644 --- a/os/hal/ports/STM32/LLD/eicu_lld.h +++ b/os/hal/ports/STM32/LLD/eicu_lld.h @@ -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. */ /*===========================================================================*/ -- cgit v1.2.3