mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
3791039974
* fixed some prototypes * restructured sys
18 lines
381 B
C
18 lines
381 B
C
#ifndef __LTC4150_H
|
|
#define __LTC4150_H
|
|
|
|
#include <ltc4150_arch.h>
|
|
|
|
void ltc4150_init(void);
|
|
void ltc4150_start(void);
|
|
void ltc4150_stop(void);
|
|
|
|
double ltc4150_get_current_mA(void);
|
|
double ltc4150_get_total_mAh(void);
|
|
double ltc4150_get_total_Joule(void);
|
|
double ltc4150_get_avg_mA(void);
|
|
int ltc4150_get_interval(void);
|
|
long ltc4150_get_intcount(void);
|
|
|
|
#endif /* __LTC4150_H */
|