2005-09-18 20:30:44 +00:00
|
|
|
/*
|
|
|
|
sysfs.h - part of libsensors, a library for reading Linux sensor data
|
|
|
|
Copyright (C) Mark M. Hoffman <mhoffman@lightlink.com>
|
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program; if not, write to the Free Software
|
|
|
|
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef SENSORS_LIB_SYSFS_H
|
|
|
|
#define SENSORS_LIB_SYSFS_H
|
|
|
|
|
|
|
|
extern char sensors_sysfs_mount[];
|
|
|
|
|
|
|
|
extern int sensors_init_sysfs(void);
|
|
|
|
|
2005-09-18 20:38:19 +00:00
|
|
|
extern int sensors_read_sysfs_chips(void);
|
|
|
|
|
2005-09-18 20:37:42 +00:00
|
|
|
extern int sensors_read_sysfs_bus(void);
|
|
|
|
|
2007-07-05 15:03:22 +00:00
|
|
|
/* Read a value out of a sysfs attribute file */
|
2007-08-13 20:16:42 +00:00
|
|
|
int sensors_read_sysfs_attr(const sensors_chip_name *name, int feature,
|
|
|
|
double *value);
|
2007-07-05 15:03:22 +00:00
|
|
|
|
|
|
|
/* Write a value to a sysfs attribute file */
|
2007-08-13 20:16:42 +00:00
|
|
|
int sensors_write_sysfs_attr(const sensors_chip_name *name, int feature,
|
|
|
|
double value);
|
2007-07-05 15:03:22 +00:00
|
|
|
|
2005-09-18 20:30:44 +00:00
|
|
|
#endif /* !SENSORS_LIB_SYSFS_H */
|