2014-10-28 09:58:25 +01:00
|
|
|
/*
|
|
|
|
* Copyright 2014 Freie Universität Berlin
|
|
|
|
*
|
|
|
|
* This file is subject to the terms and conditions of the GNU Lesser
|
|
|
|
* General Public License v2.1. See the file LICENSE in the top level
|
|
|
|
* directory for more details.
|
|
|
|
*/
|
|
|
|
|
2017-01-18 13:00:05 +01:00
|
|
|
#ifndef BATTERY_H
|
|
|
|
#define BATTERY_H
|
2010-12-17 13:38:03 +01:00
|
|
|
|
2014-10-13 15:25:50 +02:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2011-03-18 15:59:50 +01:00
|
|
|
uint32_t battery_get_voltage(void);
|
2010-12-17 13:38:03 +01:00
|
|
|
|
2014-10-13 15:25:50 +02:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2010-12-17 13:38:03 +01:00
|
|
|
#endif /* BATTERY_H */
|