update to CubeMX 6.14.0, FW_H7 1.12.1
This commit is contained in:
@ -20,11 +20,11 @@
|
||||
/* Includes ------------------------------------------------------------------*/
|
||||
#include "stm32h7xx_ll_swpmi.h"
|
||||
#include "stm32h7xx_ll_bus.h"
|
||||
#ifdef USE_FULL_ASSERT
|
||||
#ifdef USE_FULL_ASSERT
|
||||
#include "stm32_assert.h"
|
||||
#else
|
||||
#define assert_param(expr) ((void)0U)
|
||||
#endif
|
||||
#endif /* USE_FULL_ASSERT */
|
||||
|
||||
/** @addtogroup STM32H7xx_LL_Driver
|
||||
* @{
|
||||
@ -46,13 +46,13 @@
|
||||
#define IS_LL_SWPMI_BITRATE_VALUE(__VALUE__) (((__VALUE__) <= 255U))
|
||||
|
||||
#define IS_LL_SWPMI_SW_BUFFER_RX(__VALUE__) (((__VALUE__) == LL_SWPMI_SW_BUFFER_RX_SINGLE) \
|
||||
|| ((__VALUE__) == LL_SWPMI_SW_BUFFER_RX_MULTI))
|
||||
|| ((__VALUE__) == LL_SWPMI_SW_BUFFER_RX_MULTI))
|
||||
|
||||
#define IS_LL_SWPMI_SW_BUFFER_TX(__VALUE__) (((__VALUE__) == LL_SWPMI_SW_BUFFER_TX_SINGLE) \
|
||||
|| ((__VALUE__) == LL_SWPMI_SW_BUFFER_TX_MULTI))
|
||||
|| ((__VALUE__) == LL_SWPMI_SW_BUFFER_TX_MULTI))
|
||||
|
||||
#define IS_LL_SWPMI_VOLTAGE_CLASS(__VALUE__) (((__VALUE__) == LL_SWPMI_VOLTAGE_CLASS_C) \
|
||||
|| ((__VALUE__) == LL_SWPMI_VOLTAGE_CLASS_B))
|
||||
|| ((__VALUE__) == LL_SWPMI_VOLTAGE_CLASS_B))
|
||||
|
||||
/**
|
||||
* @}
|
||||
@ -76,7 +76,7 @@
|
||||
* - SUCCESS: SWPMI registers are de-initialized
|
||||
* - ERROR: Not applicable
|
||||
*/
|
||||
ErrorStatus LL_SWPMI_DeInit(SWPMI_TypeDef *SWPMIx)
|
||||
ErrorStatus LL_SWPMI_DeInit(const SWPMI_TypeDef *SWPMIx)
|
||||
{
|
||||
ErrorStatus status = SUCCESS;
|
||||
|
||||
@ -108,7 +108,7 @@ ErrorStatus LL_SWPMI_DeInit(SWPMI_TypeDef *SWPMIx)
|
||||
* - SUCCESS: SWPMI registers are initialized
|
||||
* - ERROR: SWPMI registers are not initialized
|
||||
*/
|
||||
ErrorStatus LL_SWPMI_Init(SWPMI_TypeDef *SWPMIx, LL_SWPMI_InitTypeDef *SWPMI_InitStruct)
|
||||
ErrorStatus LL_SWPMI_Init(SWPMI_TypeDef *SWPMIx, const LL_SWPMI_InitTypeDef *SWPMI_InitStruct)
|
||||
{
|
||||
ErrorStatus status = SUCCESS;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user