Files
new_f_3/User/bsp/inc/bsp_channel_realy.h
刘正航 609eb878d1 New
2026-04-16 16:55:01 +08:00

30 lines
748 B
C
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
//------------------------------------------------------------------------------
// 模块名称:通道继电器选择模块
// 文件名称bsp_channel_relay
// 版本名称V1.0
// 文件说明:头文件
// 日期时间2018年8月8日19点52分
// 文件作者Jackie Chan
// 修改记录:
// 版本号 日期 作者 说明
// V1.0 2018.08.08 J.C 正式发布
//
// 公司名称:多场低温科技有限公司
//
//------------------------------------------------------------------------------
#ifndef __BSP_CHANNEL_RELAY_H__
#define __BSP_CHANNEL_RELAY_H__
#include <stdint.h>
// 供外面调用的函数声明
void bsp_InitChannelRelay(void);
void bsp_RealyAllOff(void);
void bsp_RelayOn(uint8_t _ch);
#endif
//-------------------------------- End of file ---------------------------------