2008-04-14 15:27:59 +00:00
|
|
|
libsensors API history
|
|
|
|
======================
|
|
|
|
|
|
|
|
SENSORS_API_VERSION tracks the evolutions made to the libsensors API
|
|
|
|
over time. This document summarizes these evolutions so that application
|
|
|
|
authors can quickly figure out how to test for the availability of a
|
|
|
|
given new feature.
|
|
|
|
|
2010-11-03 13:00:59 +00:00
|
|
|
0x431 lm-sensors SVN
|
|
|
|
* Added support for intrusion detection
|
|
|
|
enum sensors_feature_type SENSORS_FEATURE_INTRUSION
|
|
|
|
enum sensors_subfeature_type SENSORS_SUBFEATURE_INTRUSION_ALARM
|
|
|
|
enum sensors_subfeature_type SENSORS_SUBFEATURE_INTRUSION_BEEP
|
|
|
|
|
2010-10-10 19:15:54 +00:00
|
|
|
0x430 lm-sensors 3.2.0
|
|
|
|
* License changed from GPL to LGPL
|
|
|
|
|
2010-02-02 20:14:53 +00:00
|
|
|
0x421 lm-sensors 3.1.2
|
2009-10-18 12:05:16 +00:00
|
|
|
* Added bus type "hid":
|
|
|
|
#define SENSORS_BUS_TYPE_HID
|
|
|
|
|
2009-06-20 10:04:52 +00:00
|
|
|
0x420 lm-sensors 3.1.1
|
|
|
|
* Added a method to free the memory allocated by sensors_parse_chip_name()
|
|
|
|
void sensors_free_chip_name(sensors_chip_name *chip);
|
|
|
|
|
2009-02-25 07:47:13 +00:00
|
|
|
0x410 lm-sensors 3.1.0
|
2009-01-13 08:06:32 +00:00
|
|
|
* Added bus type "acpi":
|
|
|
|
#define SENSORS_BUS_TYPE_ACPI
|
2008-10-24 09:03:18 +00:00
|
|
|
* Added support for instantaneous power sensors
|
|
|
|
enum sensors_subfeature_type SENSORS_SUBFEATURE_POWER_INPUT
|
|
|
|
enum sensors_subfeature_type SENSORS_SUBFEATURE_POWER_INPUT_HIGHEST
|
|
|
|
enum sensors_subfeature_type SENSORS_SUBFEATURE_POWER_INPUT_LOWEST
|
2008-10-24 09:04:26 +00:00
|
|
|
* Added support for current sensors
|
|
|
|
enum sensors_feature_type SENSORS_FEATURE_CURR
|
|
|
|
enum sensors_subfeature_type SENSORS_SUBFEATURE_CURR_INPUT
|
|
|
|
enum sensors_subfeature_type SENSORS_SUBFEATURE_CURR_MIN
|
|
|
|
enum sensors_subfeature_type SENSORS_SUBFEATURE_CURR_MAX
|
|
|
|
enum sensors_subfeature_type SENSORS_SUBFEATURE_CURR_ALARM
|
|
|
|
enum sensors_subfeature_type SENSORS_SUBFEATURE_CURR_MIN_ALARM
|
|
|
|
enum sensors_subfeature_type SENSORS_SUBFEATURE_CURR_MAX_ALARM
|
|
|
|
enum sensors_subfeature_type SENSORS_SUBFEATURE_CURR_BEEP
|
2009-01-11 12:19:32 +00:00
|
|
|
* Added error value for excessive recursion depth
|
|
|
|
#define SENSORS_ERR_RECURSION 11
|
2009-02-15 17:26:57 +00:00
|
|
|
* Added parse error reporting function including the configuration file
|
|
|
|
name
|
|
|
|
extern void (*sensors_parse_error_wfn) (const char *err,
|
|
|
|
const char *filename, int lineno);
|
2008-10-24 09:03:18 +00:00
|
|
|
|
2008-09-28 15:48:57 +00:00
|
|
|
0x401 lm-sensors 3.0.2 to 3.0.3
|
2008-04-14 15:27:59 +00:00
|
|
|
* Added bus type "virtual":
|
2008-04-17 11:01:21 +00:00
|
|
|
#define SENSORS_BUS_TYPE_VIRTUAL
|
|
|
|
* Added support for power and energy sensors
|
|
|
|
enum sensors_feature_type SENSORS_FEATURE_POWER
|
|
|
|
enum sensors_feature_type SENSORS_FEATURE_ENERGY
|
|
|
|
enum sensors_subfeature_type SENSORS_SUBFEATURE_POWER_AVERAGE
|
|
|
|
enum sensors_subfeature_type SENSORS_SUBFEATURE_POWER_AVERAGE_HIGHEST
|
|
|
|
enum sensors_subfeature_type SENSORS_SUBFEATURE_POWER_AVERAGE_LOWEST
|
|
|
|
enum sensors_subfeature_type SENSORS_SUBFEATURE_POWER_AVERAGE_INTERVAL
|
|
|
|
enum sensors_subfeature_type SENSORS_SUBFEATURE_ENERGY_INPUT
|
2008-04-14 15:27:59 +00:00
|
|
|
|
|
|
|
0x400 lm-sensors 3.0.0 to 3.0.1
|
|
|
|
* Initial API.
|