Home
last modified time | relevance | path

Searched refs:VoltageRange (Results 1 – 11 of 11) sorted by relevance

/hal_stm32-latest/stm32cube/stm32f7xx/drivers/src/
Dstm32f7xx_hal_flash_ex.c106 static void FLASH_MassErase(uint8_t VoltageRange, uint32_t Banks);
110 static void FLASH_MassErase(uint8_t VoltageRange);
179 FLASH_MassErase((uint8_t) pEraseInit->VoltageRange, pEraseInit->Banks); in HAL_FLASHEx_Erase()
181 FLASH_MassErase((uint8_t) pEraseInit->VoltageRange); in HAL_FLASHEx_Erase()
198 FLASH_Erase_Sector(index, (uint8_t) pEraseInit->VoltageRange); in HAL_FLASHEx_Erase()
254 FLASH_MassErase((uint8_t) pEraseInit->VoltageRange, pEraseInit->Banks); in HAL_FLASHEx_Erase_IT()
256 FLASH_MassErase((uint8_t) pEraseInit->VoltageRange); in HAL_FLASHEx_Erase_IT()
269 pFlash.VoltageForErase = (uint8_t)pEraseInit->VoltageRange; in HAL_FLASHEx_Erase_IT()
272 FLASH_Erase_Sector(pEraseInit->Sector, pEraseInit->VoltageRange); in HAL_FLASHEx_Erase_IT()
440 static void FLASH_MassErase(uint8_t VoltageRange, uint32_t Banks) in FLASH_MassErase() argument
[all …]
/hal_stm32-latest/stm32cube/stm32f4xx/drivers/src/
Dstm32f4xx_hal_flash_ex.c100 static void FLASH_MassErase(uint8_t VoltageRange, uint32_t Banks);
182 FLASH_MassErase((uint8_t) pEraseInit->VoltageRange, pEraseInit->Banks); in HAL_FLASHEx_Erase()
198 FLASH_Erase_Sector(index, (uint8_t) pEraseInit->VoltageRange); in HAL_FLASHEx_Erase()
253 FLASH_MassErase((uint8_t) pEraseInit->VoltageRange, pEraseInit->Banks); in HAL_FLASHEx_Erase_IT()
265 pFlash.VoltageForErase = (uint8_t)pEraseInit->VoltageRange; in HAL_FLASHEx_Erase_IT()
268 FLASH_Erase_Sector(pEraseInit->Sector, pEraseInit->VoltageRange); in HAL_FLASHEx_Erase_IT()
537 static void FLASH_MassErase(uint8_t VoltageRange, uint32_t Banks) in FLASH_MassErase() argument
540 assert_param(IS_VOLTAGERANGE(VoltageRange)); in FLASH_MassErase()
561 FLASH->CR |= FLASH_CR_STRT | ((uint32_t)VoltageRange << 8U); in FLASH_MassErase()
581 void FLASH_Erase_Sector(uint32_t Sector, uint8_t VoltageRange) in FLASH_Erase_Sector() argument
[all …]
/hal_stm32-latest/stm32cube/stm32f2xx/drivers/src/
Dstm32f2xx_hal_flash_ex.c87 static void FLASH_MassErase(uint8_t VoltageRange, uint32_t Banks);
155 FLASH_MassErase((uint8_t) pEraseInit->VoltageRange, pEraseInit->Banks); in HAL_FLASHEx_Erase()
171 FLASH_Erase_Sector(index, (uint8_t) pEraseInit->VoltageRange); in HAL_FLASHEx_Erase()
226 FLASH_MassErase((uint8_t) pEraseInit->VoltageRange, pEraseInit->Banks); in HAL_FLASHEx_Erase_IT()
238 pFlash.VoltageForErase = (uint8_t)pEraseInit->VoltageRange; in HAL_FLASHEx_Erase_IT()
241 FLASH_Erase_Sector(pEraseInit->Sector, pEraseInit->VoltageRange); in HAL_FLASHEx_Erase_IT()
351 void FLASH_Erase_Sector(uint32_t Sector, uint8_t VoltageRange) in FLASH_Erase_Sector() argument
357 assert_param(IS_VOLTAGERANGE(VoltageRange)); in FLASH_Erase_Sector()
359 if(VoltageRange == FLASH_VOLTAGE_RANGE_1) in FLASH_Erase_Sector()
363 else if(VoltageRange == FLASH_VOLTAGE_RANGE_2) in FLASH_Erase_Sector()
[all …]
/hal_stm32-latest/stm32cube/stm32h7xx/drivers/src/
Dstm32h7xx_hal_flash_ex.c114 static void FLASH_MassErase(uint32_t VoltageRange, uint32_t Banks);
226 FLASH_MassErase(pEraseInit->VoltageRange, pEraseInit->Banks); in HAL_FLASHEx_Erase()
259 FLASH_Erase_Sector(sector_index, pEraseInit->Banks, pEraseInit->VoltageRange); in HAL_FLASHEx_Erase()
387 FLASH_MassErase(pEraseInit->VoltageRange, pEraseInit->Banks); in HAL_FLASHEx_Erase_IT()
407 pFlash.VoltageForErase = pEraseInit->VoltageRange; in HAL_FLASHEx_Erase_IT()
410 FLASH_Erase_Sector(pEraseInit->Sector, pEraseInit->Banks, pEraseInit->VoltageRange); in HAL_FLASHEx_Erase_IT()
1103 static void FLASH_MassErase(uint32_t VoltageRange, uint32_t Banks) in FLASH_MassErase() argument
1107 assert_param(IS_VOLTAGERANGE(VoltageRange)); in FLASH_MassErase()
1109 UNUSED(VoltageRange); in FLASH_MassErase()
1123 FLASH->CR1 |= VoltageRange; in FLASH_MassErase()
[all …]
/hal_stm32-latest/stm32cube/stm32n6xx/drivers/include/
Dstm32n6xx_ll_pwr.h1028 __STATIC_INLINE void LL_PWR_SetVddIOVoltageRange(uint32_t VoltageRange) in LL_PWR_SetVddIOVoltageRange() argument
1030 MODIFY_REG(PWR->SVMCR3, PWR_SVMCR3_VDDIOVRSEL, (VoltageRange << PWR_SVMCR3_VDDIOVRSEL_Pos)); in LL_PWR_SetVddIOVoltageRange()
1056 __STATIC_INLINE void LL_PWR_SetVddIO2VoltageRange(uint32_t VoltageRange) in LL_PWR_SetVddIO2VoltageRange() argument
1058 MODIFY_REG(PWR->SVMCR3, PWR_SVMCR3_VDDIO2VRSEL, (VoltageRange << PWR_SVMCR3_VDDIO2VRSEL_Pos)); in LL_PWR_SetVddIO2VoltageRange()
1084 __STATIC_INLINE void LL_PWR_SetVddIO3VoltageRange(uint32_t VoltageRange) in LL_PWR_SetVddIO3VoltageRange() argument
1086 MODIFY_REG(PWR->SVMCR3, PWR_SVMCR3_VDDIO3VRSEL, (VoltageRange << PWR_SVMCR3_VDDIO3VRSEL_Pos)); in LL_PWR_SetVddIO3VoltageRange()
1112 __STATIC_INLINE void LL_PWR_SetVddIO4VoltageRange(uint32_t VoltageRange) in LL_PWR_SetVddIO4VoltageRange() argument
1114 MODIFY_REG(PWR->SVMCR1, PWR_SVMCR1_VDDIO4VRSEL, (VoltageRange << PWR_SVMCR1_VDDIO4VRSEL_Pos)); in LL_PWR_SetVddIO4VoltageRange()
1140 __STATIC_INLINE void LL_PWR_SetVddIO5VoltageRange(uint32_t VoltageRange) in LL_PWR_SetVddIO5VoltageRange() argument
1142 MODIFY_REG(PWR->SVMCR2, PWR_SVMCR2_VDDIO5VRSEL, (VoltageRange << PWR_SVMCR2_VDDIO5VRSEL_Pos)); in LL_PWR_SetVddIO5VoltageRange()
Dstm32n6xx_hal_pwr_ex.h952 void HAL_PWREx_ConfigVddIORange(uint32_t VddIOPort, uint32_t VoltageRange);
/hal_stm32-latest/stm32cube/stm32n6xx/drivers/src/
Dstm32n6xx_hal_pwr_ex.c871 void HAL_PWREx_ConfigVddIORange(uint32_t VddIOPort, uint32_t VoltageRange) in HAL_PWREx_ConfigVddIORange() argument
875 assert_param(IS_PWR_VDDIO_RANGE(VoltageRange)); in HAL_PWREx_ConfigVddIORange()
880 MODIFY_REG(PWR->SVMCR3, PWR_SVMCR3_VDDIOVRSEL, VoltageRange << PWR_SVMCR3_VDDIOVRSEL_Pos); in HAL_PWREx_ConfigVddIORange()
884 MODIFY_REG(PWR->SVMCR3, PWR_SVMCR3_VDDIO2VRSEL, VoltageRange << PWR_SVMCR3_VDDIO2VRSEL_Pos); in HAL_PWREx_ConfigVddIORange()
888 MODIFY_REG(PWR->SVMCR3, PWR_SVMCR3_VDDIO3VRSEL, VoltageRange << PWR_SVMCR3_VDDIO3VRSEL_Pos); in HAL_PWREx_ConfigVddIORange()
892 MODIFY_REG(PWR->SVMCR1, PWR_SVMCR1_VDDIO4VRSEL, VoltageRange << PWR_SVMCR1_VDDIO4VRSEL_Pos); in HAL_PWREx_ConfigVddIORange()
896 MODIFY_REG(PWR->SVMCR2, PWR_SVMCR2_VDDIO5VRSEL, VoltageRange << PWR_SVMCR2_VDDIO5VRSEL_Pos); in HAL_PWREx_ConfigVddIORange()
/hal_stm32-latest/stm32cube/stm32f2xx/drivers/include/
Dstm32f2xx_hal_flash_ex.h59 uint32_t VoltageRange;/*!< The device voltage range which defines the erase parallelism member
387 void FLASH_Erase_Sector(uint32_t Sector, uint8_t VoltageRange);
/hal_stm32-latest/stm32cube/stm32f7xx/drivers/include/
Dstm32f7xx_hal_flash_ex.h61 uint32_t VoltageRange;/*!< The device voltage range which defines the erase parallelism member
679 void FLASH_Erase_Sector(uint32_t Sector, uint8_t VoltageRange);
/hal_stm32-latest/stm32cube/stm32h7xx/drivers/include/
Dstm32h7xx_hal_flash_ex.h59 uint32_t VoltageRange;/*!< The device voltage range which defines the erase parallelism member
1053 void FLASH_Erase_Sector(uint32_t Sector, uint32_t Banks, uint32_t VoltageRange);
/hal_stm32-latest/stm32cube/stm32f4xx/drivers/include/
Dstm32f4xx_hal_flash_ex.h59 uint32_t VoltageRange;/*!< The device voltage range which defines the erase parallelism member
1044 void FLASH_Erase_Sector(uint32_t Sector, uint8_t VoltageRange);