1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-16 04:45:24 +03:00

[H7][LIB] Remove duplicate definition of assert_param from LL d… (#8711)

[H7][LIB] Remove duplicate definition of assert_param from LL dma and Tim
This commit is contained in:
Michael Keller 2019-08-13 19:21:43 +12:00 committed by GitHub
commit 408b5a9ba3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
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
* @{
*/