blob: b03fd2c0932cf338f5f6d813531fc98458a1ad72 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#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();
uint32_t Dryer_Read_Blower_Tach();
void Dryer_Control_Blower_PWM(uint8_t Freq,uint8_t High);
#endif //FPGA_H
|