Legacy branch migration
This commit is contained in:
23
firmware/devices/analog.h
Normal file
23
firmware/devices/analog.h
Normal file
@@ -0,0 +1,23 @@
|
||||
#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_ */
|
||||
Reference in New Issue
Block a user