23 lines
455 B
C
23 lines
455 B
C
#ifndef ANALOG_H_
|
|
#define ANALOG_H_
|
|
|
|
/**** Includes ****/
|
|
#include <stdint.h>
|
|
|
|
/**** Public definitions ****/
|
|
typedef struct {
|
|
uint16_t hb_currnet;
|
|
uint16_t hb_voltage;
|
|
uint16_t hb_power;
|
|
uint16_t hb_resistance;
|
|
uint16_t supply_current;
|
|
uint16_t supply_voltage;
|
|
uint16_t supply_power;
|
|
uint16_t pot_voltage;
|
|
uint16_t mode_voltage;
|
|
} analog_t;
|
|
|
|
/**** Public function declarations ****/
|
|
void Analog_UpdateAll(analog_t* meas);
|
|
|
|
#endif /* ANALOG_H_ */ |