http://ck.kolivas.org/apps/cgminer/avalon/20130624/openwrt-ar71xx-generic-tl-wr703n-v1-squashfs-factory.bin
Note that I have donation settings in the configuration so if you do not use your own config settings, it will start mining for me until you change them.
Usual warnings apply with aggressive overclocking: do so at your own risk!
Enjoy
If you could add the 5Mhz steps from strombom into your firmware and the ability to change it via web interface, I will send you a tip of 0.5BTC
I am inspecting the info provided from strombom
There are difference between registers
Form latest con cgminer source
switch (frequency) {
case 256:
buf[6] = 0x03;
buf[7] = 0x08;
break;
default:
case 270:
buf[6] = 0x73;
buf[7] = 0x08;
break;
case 282:
buf[6] = 0xd3;
buf[7] = 0x08;
break;
case 300:
buf[6] = 0x63;
buf[7] = 0x09;
break;
case 325:
buf[6] = 0x28;
buf[7] = 0x0a;
break;
case 350:
buf[6] = 0xf0;
buf[7] = 0x0a;
break;
case 375:
buf[6] = 0xb8;
buf[7] = 0x0b;
break;
}
Form hacked cgminer 5 Mhz steps
} else if (frequency == 325) {
buf[6] = 0x2b;
buf[7] = 0x0a;
} else if (frequency == 350) {
buf[6] = 0xf3;
buf[7] = 0x0a;
} else if (frequency == 375) {
buf[6] = 0xbb;
buf[7] = 0x0b;
I will not patch mine cgminer unless con decides to implement it
Best
PS: Att to strombom
Can you comment why values are different and timing also?
Thank you!
Best