Fixed typo
This commit is contained in:
parent
a2f9bc469a
commit
c757be0c16
|
@ -17,7 +17,7 @@
|
|||
#ifndef _CRC_H_
|
||||
#define _CRC_H_
|
||||
|
||||
#if HAL_USE_CRC || defined(__DOXYGEN__)
|
||||
#if (HAL_USE_CRC == TRUE) || defined(__DOXYGEN__)
|
||||
|
||||
/*===========================================================================*/
|
||||
/* Driver constants. */
|
||||
|
|
|
@ -24,7 +24,7 @@
|
|||
|
||||
#include "hal.h"
|
||||
|
||||
#if (HAL_USE_CRC = TRUE) || defined(__DOXYGEN__)
|
||||
#if (HAL_USE_CRC == TRUE) || defined(__DOXYGEN__)
|
||||
|
||||
/**
|
||||
* Allow CRC Software override for ST drivers. Some ST CRC implimentations
|
||||
|
|
|
@ -25,7 +25,7 @@
|
|||
#ifndef _CRC_LLD_H_
|
||||
#define _CRC_LLD_H_
|
||||
|
||||
#if (HAL_USE_CRC = TRUE) || defined(__DOXYGEN__)
|
||||
#if (HAL_USE_CRC == TRUE) || defined(__DOXYGEN__)
|
||||
|
||||
/*
|
||||
* This error check must occur outsite of CRCSW_USE_CRC1 to check if
|
||||
|
|
|
@ -31,7 +31,7 @@
|
|||
*/
|
||||
#include "hal.h"
|
||||
|
||||
#if (HAL_USE_EICU = TRUE) || defined(__DOXYGEN__)
|
||||
#if (HAL_USE_EICU == TRUE) || defined(__DOXYGEN__)
|
||||
|
||||
/*===========================================================================*/
|
||||
/* Driver local definitions. */
|
||||
|
|
|
@ -27,7 +27,7 @@
|
|||
|
||||
#include "stm32_tim.h"
|
||||
|
||||
#if (HAL_USE_EICU = TRUE) || defined(__DOXYGEN__)
|
||||
#if (HAL_USE_EICU == TRUE) || defined(__DOXYGEN__)
|
||||
|
||||
/*===========================================================================*/
|
||||
/* Driver constants. */
|
||||
|
|
|
@ -19,7 +19,7 @@
|
|||
*/
|
||||
#include "hal.h"
|
||||
|
||||
#if (HAL_USE_CRC = TRUE) || defined(__DOXYGEN__)
|
||||
#if (HAL_USE_CRC == TRUE) || defined(__DOXYGEN__)
|
||||
|
||||
/*===========================================================================*/
|
||||
/* Driver local definitions. */
|
||||
|
|
Loading…
Reference in New Issue