1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-13 11:29:58 +03:00

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

This commit is contained in:
jflyper 2020-01-19 12:38:05 +09:00
parent 3a42a373bd
commit 6725595f37
2 changed files with 0 additions and 11 deletions

View file

@ -21,11 +21,6 @@
/* Includes ------------------------------------------------------------------*/
#include "stm32h7xx_ll_dma.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
* @{

View file

@ -22,12 +22,6 @@
#include "stm32h7xx_ll_tim.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
* @{
*/