vbus_sensor.h 264 B

12345678910111213141516
  1. #ifndef _VBUS_SENSOR_H__
  2. #define _VBUS_SENSOR_H__
  3. typedef struct {
  4. float voltage;
  5. float voltage_filted;
  6. int avg_count;
  7. }vbus_t;
  8. void vbus_sensor_init(void);
  9. void vbus_sample_voltage(void);
  10. float vbus_get_filted_voltage(void);
  11. #endif /* _VBUS_SENSOR_H__ */