30 lines
780 B
C
30 lines
780 B
C
//------------------------------------------------------------------------------
|
||
// 模块名称:FPGA供电控制驱动模块
|
||
// 文件名称:bsp_fpag_power.h
|
||
// 版本名称:V1.0
|
||
// 文件说明:头文件
|
||
// 日期时间:2018年8月8日17点52分
|
||
// 文件作者:Jackie Chan
|
||
// 修改记录:
|
||
// 版本号 日期 作者 说明
|
||
// V1.0 2018.08.08 J.C 正式发布
|
||
//
|
||
// 公司名称:多场低温科技有限公司
|
||
//
|
||
//------------------------------------------------------------------------------
|
||
|
||
#ifndef __BSP_FPGA_POWER_H__
|
||
#define __BSP_FPGA_POWER_H__
|
||
|
||
#include "bsp.h"
|
||
|
||
// 供外面调用的函数声明
|
||
void bsp_InitFpgaPower(void);
|
||
void bsp_FpgaPowerCmd(FunctionalState _NewState);
|
||
void bsp_FpgaPowerMainLoop(uint16_t _delay_n_10ms);
|
||
|
||
#endif
|
||
|
||
//-------------------------------- End of file ---------------------------------
|
||
|