Project

General

Profile

Statistics
| Revision:

root / branches / simulator / projects / simulator / libsim / battery.c @ 978

History | View | Annotate | Download (260 Bytes)

1 942 bcoltin
#include "battery.h"
2
#include "util.h"
3 906 bcoltin
4
int battery8(void)
5
{
6 933 bcoltin
        UNIMPLEMENTED
7 942 bcoltin
        return -1;
8 906 bcoltin
}
9
10
int battery(void)
11
{
12 933 bcoltin
        UNIMPLEMENTED
13 942 bcoltin
        return -1;
14 906 bcoltin
}
15
16
char battery_low(void)
17
{
18 933 bcoltin
        UNIMPLEMENTED
19 942 bcoltin
        return -1;
20 906 bcoltin
}
21
22
int battery8_avg(int n_samples)
23
{
24 933 bcoltin
        UNIMPLEMENTED
25 942 bcoltin
        return -1;
26 906 bcoltin
}