summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRaptor Engineering Development Team <support@raptorengineering.com>2018-06-12 05:10:52 -0500
committerRaptor Engineering Development Team <support@raptorengineering.com>2018-06-12 05:10:52 -0500
commitac03cb7feff8b9fb56c941dd33cab50769b33551 (patch)
tree53741b738dd0c9234626a8b2d023e9326894bb18
parent6cb31cee9d372d7122d87909dd149a32ccd6085a (diff)
downloadvpdtools-ac03cb7feff8b9fb56c941dd33cab50769b33551.tar.gz
vpdtools-ac03cb7feff8b9fb56c941dd33cab50769b33551.zip
Allow voltage to be pushed up to process limits
-rwxr-xr-xwoferclock/update_poundv_buckets8
1 files changed, 7 insertions, 1 deletions
diff --git a/woferclock/update_poundv_buckets b/woferclock/update_poundv_buckets
index 767ec8a..a21b3f2 100755
--- a/woferclock/update_poundv_buckets
+++ b/woferclock/update_poundv_buckets
@@ -53,7 +53,13 @@ new_powerbus_mhz = int(sys.argv[3])
new_ultraturbo_mhz = int(sys.argv[4])
voltage_multiplier = float(sys.argv[5])
raw_data = sys.argv[6]
-max_voltage = 1098
+
+# Rated limit plus safety margin
+#max_voltage = 1098
+
+# Absolute maximum process limit
+# Hardware damage WILL occur above this value!
+max_voltage = 1150
if (source_bucket < 0) or (source_bucket > 5):
print "[ERROR] Invalid source bucket specified"
OpenPOWER on IntegriCloud