add
程序员文章站
2022-03-03 22:22:32
...
void SystemControl()
{
}
/*
* function describe: There are five system state(SYSTEM_READY, SYSTEM_STARTING, SYSTEM_STARTED, SYSTEM_SHUTDOWN, SYSTEM_FAULT).
* SYSTEM_READY: No fault happened and system is turned off.
* SYSTEM_STARTING: No fault happened and system is starting.
* SYSTEM_STARTED: No fault happened and system have been launched.
* SYSTEM_SHUTDOWN: No fault happened and system is turned off.
* SYSTEM_FAULT: Some fault happened and system has been turned off.
* function exe max time: 5ms
*/
void SystemControlProcess()
/*
* function describe: Calculate the multiple signals collected back.
* AVI(AIN7/PB7): every 20ms collect.
* TEMP_SENSOR_1(AIN6/PB6): every 10ms collect.
* TEMP_SENSOR_2(AIN5/PB5): 8ms.
* V_REF(AIN4/PB4): 8ms.
* I_REF(TIM1_ETR/AIN3/PB3): 8ms.
* VOUT_SENSE(TIM1_CH2N/AIN1/PB1):
* VIN_SENSE(TIM1_CH1/AIN0/PB0):
* IAV_SENSE(AIN8/PE7):
* Those signals collect by AD interrupt function in hardware. This function only deal smoothing.
*
* function exe max time: 2ms
*/
void SignalSimplingProcess()
推荐阅读
-
Python使用add_subplot与subplot画子图操作示例
-
nginx add_header指令使用方法
-
MySQL的时间差函数(TIMESTAMPDIFF、DATEDIFF)、日期转换计算函数(date_add、day、date_format、str_to_date)
-
dotnetcore-officeaddin-toolbox : Office 365 Add-in开发人员的工具箱
-
Dockerfile 指令 ADD 和 COPY介绍
-
【转载】C#中ArrayList集合类使用Add方法添加元素
-
详解Dockerfile 中的 COPY 与 ADD 命令
-
服务器 vim模式下报错E37: No write since last change (add ! to override)
-
ERROR StatusLogger Log4j2 could not find a logging implementation. Please add log4j-core to the classpath. Using SimpleLogger to log to the console...
-
【转载】C#中Add方法将往List集合末尾添加相应元素对象