Skip to content

Commit bb9952e

Browse files
committed
STM32F4 remove non-UTF characters
1 parent f103713 commit bb9952e

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

targets/TARGET_STM/TARGET_STM32F4/STM32Cube_FW/CMSIS/stm32f4xx.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
* is using in the C source code, usually in main.c. This file contains:
99
* - Configuration section that allows to select:
1010
* - The STM32F4xx device used in the target application
11-
* - To use or not the peripherals drivers in application code(i.e.
12-
* code will be based on direct access to peripherals registers
11+
* - To use or not the peripheral's drivers in application code(i.e.
12+
* code will be based on direct access to peripheral's registers
1313
* rather than drivers API), this option is controlled by
1414
* "#define USE_HAL_DRIVER"
1515
*

targets/TARGET_STM/TARGET_STM32F4/STM32Cube_FW/STM32F4xx_HAL_Driver/stm32f4xx_hal_cryp.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -470,7 +470,7 @@ HAL_StatusTypeDef HAL_CRYP_Init(CRYP_HandleTypeDef *hcryp)
470470
}
471471
#endif /* (USE_HAL_CRYP_REGISTER_CALLBACKS) */
472472

473-
/* Set the key size(This bit field is don’t care in the DES or TDES modes) data type and Algorithm */
473+
/* Set the key size(This bit field is don't care in the DES or TDES modes) data type and Algorithm */
474474
#if defined (CRYP)
475475

476476
MODIFY_REG(hcryp->Instance->CR, CRYP_CR_DATATYPE | CRYP_CR_KEYSIZE | CRYP_CR_ALGOMODE,
@@ -589,7 +589,7 @@ HAL_StatusTypeDef HAL_CRYP_SetConfig(CRYP_HandleTypeDef *hcryp, CRYP_ConfigTypeD
589589
hcryp->Init.KeyIVConfigSkip = pConf->KeyIVConfigSkip;
590590
hcryp->Init.HeaderWidthUnit = pConf->HeaderWidthUnit;
591591

592-
/* Set the key size(This bit field is don’t care in the DES or TDES modes) data type, AlgoMode and operating mode*/
592+
/* Set the key size(This bit field is don't care in the DES or TDES modes) data type, AlgoMode and operating mode*/
593593
#if defined (CRYP)
594594

595595
MODIFY_REG(hcryp->Instance->CR, CRYP_CR_DATATYPE | CRYP_CR_KEYSIZE | CRYP_CR_ALGOMODE,

targets/TARGET_STM/TARGET_STM32F4/STM32Cube_FW/STM32F4xx_HAL_Driver/stm32f4xx_hal_cryp_ex.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ HAL_StatusTypeDef HAL_CRYPEx_AESGCM_GenerateAuthTAG(CRYP_HandleTypeDef *hcryp, u
177177
/* Select final phase */
178178
MODIFY_REG(hcryp->Instance->CR, CRYP_CR_GCM_CCMPH, CRYP_PHASE_FINAL);
179179

180-
/*ALGODIR bit must be set to ‘0’.*/
180+
/*ALGODIR bit must be set to '0'.*/
181181
hcryp->Instance->CR &= ~CRYP_CR_ALGODIR;
182182

183183
/* Enable the CRYP peripheral */
@@ -395,7 +395,7 @@ HAL_StatusTypeDef HAL_CRYPEx_AESCCM_GenerateAuthTAG(CRYP_HandleTypeDef *hcryp, u
395395
/* Disable CRYP to start the final phase */
396396
__HAL_CRYP_DISABLE(hcryp);
397397

398-
/* Select final phase & ALGODIR bit must be set to ‘0’. */
398+
/* Select final phase & ALGODIR bit must be set to '0'. */
399399
MODIFY_REG(hcryp->Instance->CR, CRYP_CR_GCM_CCMPH | CRYP_CR_ALGODIR, CRYP_PHASE_FINAL | CRYP_OPERATINGMODE_ENCRYPT);
400400

401401
/* Enable the CRYP peripheral */

targets/TARGET_STM/TARGET_STM32F4/STM32Cube_FW/STM32F4xx_HAL_Driver/stm32f4xx_hal_wwdg.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
(++) max time (mS) = 1000 * (Counter - 0x40) / WWDG clock
4141
(+) Typical values:
4242
(++) Counter min (T[5;0] = 0x00) at 42MHz (PCLK1) with zero prescaler:
43-
max timeout before reset: approximately 97.52µs
43+
max timeout before reset: approximately 97.52us
4444
(++) Counter max (T[5;0] = 0x3F) at 42MHz (PCLK1) with prescaler
4545
dividing by 8:
4646
max timeout before reset: approximately 49.93ms

0 commit comments

Comments
 (0)