22 lines
334 B
C
22 lines
334 B
C
#ifndef _ADCS_H_
|
|
#define _ADCS_H_
|
|
|
|
#include "stm32f4xx_hal.h"
|
|
#include "adc.h"
|
|
#include "modbus.h"
|
|
#include "ADS1256.h"
|
|
#include "ads1220.h"
|
|
#include "mf5803.h"
|
|
#include "ds18b20.h"
|
|
|
|
|
|
extern uint32_t ADC_ConvertedValue;
|
|
extern short Temp;
|
|
|
|
void adcs_init(void);
|
|
void adcs_data(void);
|
|
void analog_gather(void);
|
|
|
|
#endif /* _ADCS_H_ */
|
|
|