-
Notifications
You must be signed in to change notification settings - Fork 487
Structure of a NBFC config file
Stefan Hirschmann edited this page Nov 5, 2016
·
1 revision
A NBFC config file consists of 3 parts:
- Basic configuration
- One or more Fan configuration elements
- Zero or more Register write configuration elements
The structure of a NBFC config file looks like this:
<?xml version="1.0"?>
<FanControlConfigV2 xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<!--
Basic configuration:
...
-->
<FanConfigurations>
<!--
Fan configuration:
One or more <FanConfiguration/> elements
-->
</FanConfigurations>
<RegisterWriteConfigurations>
<!--
Register write configuration:
One or more <RegisterWriteConfiguration/> elements
-->
</RegisterWriteConfigurations>
</FanControlConfigV2>