Browse Source

gridseed: Bugfix: fix the constant used for estimated hash rates

Nate Woolls 11 years ago
parent
commit
07ee05592b
1 changed files with 2 additions and 1 deletions
  1. 2 1
      driver-gridseed.c

+ 2 - 1
driver-gridseed.c

@@ -19,7 +19,8 @@
 #include "gc3355.h"
 
 #define GRIDSEED_DEFAULT_FREQUENCY  600
-#define GRIDSEED_HASH_SPEED			0.0851128926	// in ms
+// 60Kh/s at 700MHz in ms
+#define GRIDSEED_HASH_SPEED			0.08571428571429
 
 BFG_REGISTER_DRIVER(gridseed_drv)