-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Jostar Yang <jostar_yang@accton.com.tw>
- Loading branch information
Jostar Yang
committed
Jul 2, 2021
1 parent
01f51e0
commit 867d386
Showing
21 changed files
with
2,622 additions
and
2 deletions.
There are no files selected for viewing
54 changes: 54 additions & 0 deletions
54
device/accton/x86_64-accton_as7712_32x-r0/pddf/pd-plugin.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
{ | ||
"PSU": | ||
{ | ||
"psu_present": | ||
{ | ||
"i2c": | ||
{ | ||
"valmap": { "1":true, "0":false } | ||
} | ||
}, | ||
|
||
"psu_power_good": | ||
{ | ||
"i2c": | ||
{ | ||
"valmap": { "1": true, "0":false } | ||
} | ||
}, | ||
|
||
"psu_fan_dir": | ||
{ | ||
"i2c": | ||
{ | ||
"valmap": { "F2B":"EXHAUST", "B2F":"INTAKE" } | ||
} | ||
}, | ||
|
||
"PSU_FAN_MAX_SPEED":"18000" | ||
}, | ||
|
||
"FAN": | ||
{ | ||
"direction": | ||
{ | ||
"i2c": | ||
{ | ||
"valmap": {"1":"EXHAUST", "0":"INTAKE"} | ||
} | ||
}, | ||
|
||
"present": | ||
{ | ||
"i2c": | ||
{ | ||
"valmap": {"1":true, "0":false} | ||
} | ||
}, | ||
|
||
"duty_cycle_to_pwm": "lambda dc: ((dc*100.0)/625 - 1)", | ||
|
||
"pwm_to_duty_cycle": "lambda pwm: math.ceil(((pwm+1)*625.0)/100)" | ||
} | ||
|
||
} |
Oops, something went wrong.