симулируется упп на stm32f103

This commit is contained in:
2025-05-10 01:20:08 +03:00
parent c6269ca448
commit 08719ffc05
397 changed files with 516 additions and 30524 deletions

View File

@@ -779,33 +779,33 @@ HAL_StatusTypeDef HAL_ADC_DeInit(ADC_HandleTypeDef* hadc)
return tmp_hal_status;
}
/**
* @brief Initializes the ADC MSP.
* @param hadc: ADC handle
* @retval None
*/
__weak void HAL_ADC_MspInit(ADC_HandleTypeDef* hadc)
{
/* Prevent unused argument(s) compilation warning */
UNUSED(hadc);
/* NOTE : This function should not be modified. When the callback is needed,
function HAL_ADC_MspInit must be implemented in the user file.
*/
}
///**
// * @brief Initializes the ADC MSP.
// * @param hadc: ADC handle
// * @retval None
// */
//__weak void HAL_ADC_MspInit(ADC_HandleTypeDef* hadc)
//{
// /* Prevent unused argument(s) compilation warning */
// UNUSED(hadc);
// /* NOTE : This function should not be modified. When the callback is needed,
// function HAL_ADC_MspInit must be implemented in the user file.
// */
//}
/**
* @brief DeInitializes the ADC MSP.
* @param hadc: ADC handle
* @retval None
*/
__weak void HAL_ADC_MspDeInit(ADC_HandleTypeDef* hadc)
{
/* Prevent unused argument(s) compilation warning */
UNUSED(hadc);
/* NOTE : This function should not be modified. When the callback is needed,
function HAL_ADC_MspDeInit must be implemented in the user file.
*/
}
///**
// * @brief DeInitializes the ADC MSP.
// * @param hadc: ADC handle
// * @retval None
// */
//__weak void HAL_ADC_MspDeInit(ADC_HandleTypeDef* hadc)
//{
// /* Prevent unused argument(s) compilation warning */
// UNUSED(hadc);
// /* NOTE : This function should not be modified. When the callback is needed,
// function HAL_ADC_MspDeInit must be implemented in the user file.
// */
//}
#if (USE_HAL_ADC_REGISTER_CALLBACKS == 1)
/**