I'm having trouble getting cgminer-3-7-2-gridseed-windows-alt to specify frequency per device.
Win 7 64Bit with Zadig drivers WinUSB (v6.1.7600.16385).
It will run perfect for hours at 1188 if it is set for all devices but as soon as I add the text for device specific frequency, the bloody thing doesn't run at all.
Here's my current .bat file which works perfect but with only one frequency.
cgminer.exe --scrypt -o stratum+tcp://somerandompool.com:1234 -u xxxx.xxxxx -p xxxxx --hotplug 0 --gridseed-options=baud=115200,freq=1188,chips=5
pause
Any ideas would be GREATLY appreciated as I've been trying for 2 days now
--gridseed-freq 6D8765292997=1200
Thanks Ferris419... That worked.
I had done that before as its in the readme but I was specifying all the gridseeds.
Like this: (which doesn't work)
cgminer.exe --scrypt -o stratum+tcp://stratum.doge.hashfaster.com:3339 -u nlouks.worker3 -p worker1234 --hotplug 0 --gridseed-options=baud=115200,freq=1188,chips=5 --gridseed-freq 6D88566F4853=1150,8D782F955748=1188
pause
But as I'm only setting up two gridseeds, cgminer was freaking out because I was telling it the frequency twice.
By just putting this: (which does work)
cgminer.exe --scrypt -o stratum+tcp://stratum.doge.hashfaster.com:3339 -u nlouks.worker3 -p worker1234 --hotplug 0 --gridseed-options=baud=115200,freq=1188,chips=5 --gridseed-freq 6D88566F4853=1150
pause
It's not conflicting I suppose.
Thank you for your help