1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-13 19:40:31 +03:00

[H7][LIB] Remove duplicate definition of assert_param from LL dma and Tim

This commit is contained in:
jflyper 2019-08-12 11:22:02 +09:00
parent b310f9b348
commit 1d44de3d42
2 changed files with 0 additions and 11 deletions

View file

@ -21,11 +21,6 @@
/* Includes ------------------------------------------------------------------*/ /* Includes ------------------------------------------------------------------*/
#include "stm32h7xx_ll_dma.h" #include "stm32h7xx_ll_dma.h"
#include "stm32h7xx_ll_bus.h" #include "stm32h7xx_ll_bus.h"
#ifdef USE_FULL_ASSERT
#include "stm32_assert.h"
#else
#define assert_param(expr) ((void)0U)
#endif
/** @addtogroup STM32H7xx_LL_Driver /** @addtogroup STM32H7xx_LL_Driver
* @{ * @{

View file

@ -22,12 +22,6 @@
#include "stm32h7xx_ll_tim.h" #include "stm32h7xx_ll_tim.h"
#include "stm32h7xx_ll_bus.h" #include "stm32h7xx_ll_bus.h"
#ifdef USE_FULL_ASSERT
#include "stm32_assert.h"
#else
#define assert_param(expr) ((void)0U)
#endif /* USE_FULL_ASSERT */
/** @addtogroup STM32H7xx_LL_Driver /** @addtogroup STM32H7xx_LL_Driver
* @{ * @{
*/ */