dac_control.c
/** file dac_control.c brief 直接调用 HAL_DAC 的 DAC 输出与 PI 控制实现。 */
#include "dac_control.h"static uint8_t DAC_Control_IsNumber(float value)
{return ((value > 0.0f) || (value < 0.0f)) ? 1U : 0U;
}static uint8_t DAC_Control_IsReady…
2026/7/31 4:02:23