blob: 2ec469a22b4df760ddd6721bdd14a3f29ee90bb7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#ifndef FPGA_H
#define FPGA_H
int FPGA_Test();
int FPGA_Test_ReadBack(unsigned char FPGA_NUM, unsigned short Value, unsigned short *ReadBackValue);
int FPGA_ReadVersion(unsigned char FPGA_NUM, unsigned char *Version, unsigned char *Year, unsigned char *Month, unsigned char *Day);
void FPGA_Init();
//void FPGA_Read_limit_Switches(void);
uint32_t Read_Fans_Tacho();
uint32_t WHS_Read_Blower_Tach();
void WHS_Control_Blower_PWM(uint8_t Freq,uint8_t High);
#endif //FPGA_H
|