Fixed restoration of the panel divider position.
[psensor.git] / src / lib / bcm2835.h
1 /*
2  * Copyright (C) 2017 jeanfi@gmail.com
3  *
4  * This program is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU General Public License as
6  * published by the Free Software Foundation; either version 2 of the
7  * License, or (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful, but
10  * WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program; if not, write to the Free Software
16  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
17  * 02110-1301 USA
18  */
19
20 /*
21  * Retrieve temperature from the chip BCM2835 which is mostly
22  * used by the Raspberry PI3 and not support by lmsensor.
23  */
24 #ifndef _PSENSOR_BCM2835_H_
25 #define _PSENSOR_BCM2835_H_
26
27 #include <bool.h>
28 #include <psensor.h>
29
30 static inline bool bcm2835_is_supported(void) { return true; }
31
32 void bcm2835_psensor_list_update(struct psensor **);
33 void bcm2835_psensor_list_append(struct psensor ***, int);
34 void bcm2835_cleanup(void);
35
36 #endif