1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00
RIOT/drivers/include/ltc4150.h

18 lines
353 B
C
Raw Normal View History

#ifndef __LTC4150_H
#define __LTC4150_H
#include <ltc4150_arch.h>
void ltc4150_init();
void ltc4150_start();
void ltc4150_stop();
double ltc4150_get_current_mA();
double ltc4150_get_total_mAh();
double ltc4150_get_total_Joule(void);
double ltc4150_get_avg_mA();
int ltc4150_get_interval();
long ltc4150_get_intcount(void);
#endif /* __LTC4150_H */