Pages:
Author

Topic: [EU/UK GROUP BUY] Blue Fury USB miner 2.2 - 2.7 GH/s - page 9. (Read 64555 times)

sr. member
Activity: 258
Merit: 250
Breizh Atao
No other computer to try as those at work are heavily secured. got both of them now not showing in bfgminer. will try different method and come back to you.
hero member
Activity: 714
Merit: 601
It seems like I have a dead BlueFury. Got them this morning. Any ideas anyone how to revive it? It shows a red led and doesn't appear in bfgminer anymore. It was there nicely for an hour until it went 'sick'. bit of a noob with those units so any help appreciated.

If you're sure its faulty, we can replace it.. but, occasionally I have to unplug one or two and plug it back in.. and/or restart the mining software.

You could always try one at a time on another computer and see how it responds to be sure.
sr. member
Activity: 258
Merit: 250
Breizh Atao
It seems like I have a dead BlueFury. Got them this morning. Any ideas anyone how to revive it? It shows a red led and doesn't appear in bfgminer anymore. It was there nicely for an hour until it went 'sick'. bit of a noob with those units so any help appreciated.
sr. member
Activity: 252
Merit: 250
"How did you managed to get it to 2.7? I am also using the latest bfgminer. What commands are you using?"

I believe it's called the pencil command  Wink

 Grin Now I have coffee all over my keyboard
sr. member
Activity: 280
Merit: 250

I had about 2.23 GH/s at first like most here. Took a look at the PCB and realized the fury chip was a bit choked to prevent heat and USB power issues. R15 next to the button was set at 22k. Read that a value of 10k would be fine. By paralleling another resistor you get R= 1 /(1/R1 + 1/R2). Set a tiny SMD pot to about 19k (careful not to set to low!) and bridged the the 22k resistor for a total of about 10k. Did a reboot and was seeing about 2.84 GH/s. High error rate and the heat sink was getting really hot. A little increase on the pots resistance landed me at at an Avg of 2.78 GH/s and a report of 2.61 GH/s. Error 4.6%

 
So you have an idea of what you should be listing in your rc.local (using Debian armhf on a SoC)
Code:
ls /dev/tty*
To make sure you are really listing the right device (a /dev/ttyACMx) on the port see what is there.
Code:
udevadm info --query=all -n /dev/ttyACM0 | grep ID_VENDOR

A fury will show:

Code:
E: ID_VENDOR=BFMG
E: ID_VENDOR_ENC=BFMG
E: ID_VENDOR_FROM_DATABASE=Atmel Corp.
E: ID_VENDOR_ID=03eb

This is even more important for ttyUSB devices since BE and BFL etc all will show up as /dev/ttyUSB* stuff.

Just change the ttyUSB0 to ttyUSB1,2,3 …n. In my case this is the cmd in my;

Code:
/etc/rc.local

Code:
/usr/bin/screen -dmS bfgminer ./bfgminer -S bigpic:/dev/ttyACM0 -S erupter:/dev/ttyUSB0 -S erupter:/dev/ttyUSB1 -S erupter:/dev/ttyUSB2 --config /home/zion/.bfgminer/bfgminer.conf

If ports start changing on you give the -S noauto a read

This is even more important for ttyUSB* devices since BE and BFL etc all will show up as /dev/ttyUSB* stuff.
Just change the ttyUSB0 to ttyUSB1,2,3 …n.

Using screen like this with the -dmS will just kick off the command and detach while the S parameter gives it a nice name “bfgminer”.  

Anyway I have my fury set at 2.7 GH/s now and that seems to be “the sweet spot” on this thing. More or less what I got with a fury chip setup I built running at 0.84V @ 2.5A clocked at 230MHz. This thing should be easy to chain fury chips on...idk. If I can get hold of some bare chips Ill give it a shot...that is if I don't get some ANT (BM1380) chips sent to me first for another project.

Somebody said something about "the pencil mod cmd" lol, sure that might work too. Not sure I personally would do it that way.


Thanks buddy, I will give it a try.  Smiley
newbie
Activity: 25
Merit: 0
Thx OutCast3k
SSH'd into the Debian armhf SoC about a day or two after kick off.
The Fury is doing Avg 2.77/ 2.58 Ghs. Just dropped a 0-25k SMD pot parallel over R15. With no fan I get about 4.5% HW error. With a fan HW Error is about 3.2%. Ill set it for about 2.7 GH/s and that will improve the error rate even more. No need to flash as Luke's code quills a lot of the issues.

https://i.imgur.com/gp8Lb8K.png

This is just a little side toy I am playing with. 3 BE, 1 "Blue Fury" and a 30 GH/s BFL on ARM SoC with a little Dlink DUB-H7. The OS is my own brew of Debian with a git pull from Luke-Jr from a few days back. Rock solid.

Might mod it by chaining in a a few more fury chips with their own power supplies and pcb board just for the “tinker factor”.
You don't have any bare bitfury chips to sell do you?

All the best
Onryo

How did you managed to get it to 2.7? I am also using the latest bfgminer. What commands are you using?

I had about 2.23 GH/s at first like most here. Took a look at the PCB and realized the fury chip was a bit choked to prevent heat and USB power issues. R15 next to the button was set at 22k. Read that a value of 10k would be fine. By paralleling another resistor you get R= 1 /(1/R1 + 1/R2). Set a tiny SMD pot to about 19k (careful not to set to low!) and bridged the the 22k resistor for a total of about 10k. Did a reboot and was seeing about 2.84 GH/s. High error rate and the heat sink was getting really hot. A little increase on the pots resistance landed me at at an Avg of 2.78 GH/s and a report of 2.61 GH/s. Error 4.6%

 
So you have an idea of what you should be listing in your rc.local (using Debian armhf on a SoC)
Code:
ls /dev/tty*
To make sure you are really listing the right device (a /dev/ttyACMx) on the port see what is there.
Code:
udevadm info --query=all -n /dev/ttyACM0 | grep ID_VENDOR

A fury will show:

Code:
E: ID_VENDOR=BFMG
E: ID_VENDOR_ENC=BFMG
E: ID_VENDOR_FROM_DATABASE=Atmel Corp.
E: ID_VENDOR_ID=03eb

This is even more important for ttyUSB devices since BE and BFL etc all will show up as /dev/ttyUSB* stuff.

Just change the ttyUSB0 to ttyUSB1,2,3 …n. In my case this is the cmd in my;

Code:
/etc/rc.local

Code:
/usr/bin/screen -dmS bfgminer ./bfgminer -S bigpic:/dev/ttyACM0 -S erupter:/dev/ttyUSB0 -S erupter:/dev/ttyUSB1 -S erupter:/dev/ttyUSB2 --config /home/zion/.bfgminer/bfgminer.conf

If ports start changing on you give the -S noauto a read

This is even more important for ttyUSB* devices since BE and BFL etc all will show up as /dev/ttyUSB* stuff.
Just change the ttyUSB0 to ttyUSB1,2,3 …n.

Using screen like this with the -dmS will just kick off the command and detach while the S parameter gives it a nice name “bfgminer”.  

Anyway I have my fury set at 2.7 GH/s now and that seems to be “the sweet spot” on this thing. More or less what I got with a fury chip setup I built running at 0.84V @ 2.5A clocked at 230MHz. This thing should be easy to chain fury chips on...idk. If I can get hold of some bare chips Ill give it a shot...that is if I don't get some ANT (BM1380) chips sent to me first for another project.

Somebody said something about "the pencil mod cmd" lol, sure that might work too. Not sure I personally would do it that way.
hero member
Activity: 1246
Merit: 501
Yep, the Staedtler Tradition 2B command.

More details here: http://www.staedtler.co.uk/tradition_uk
hero member
Activity: 2576
Merit: 882
Freebitco.in Support https://bit.ly/2I9BVS2
"How did you managed to get it to 2.7? I am also using the latest bfgminer. What commands are you using?"

I believe it's called the pencil command  Wink

Not exactly a command  Shocked

hero member
Activity: 686
Merit: 500
WANTED: Active dev to fix & re-write p2pool in C
"How did you managed to get it to 2.7? I am also using the latest bfgminer. What commands are you using?"

I believe it's called the pencil command  Wink
hero member
Activity: 1246
Merit: 501
According to MinePeon, my remaining BlueFury was doing 3.5GH with 20% errors last night.  I'm not convinced it's telling the truth.

I'll do more investigation this evening...
sr. member
Activity: 280
Merit: 250
Thx OutCast3k
SSH'd into the Debian armhf SoC about a day or two after kick off.
The Fury is doing Avg 2.77/ 2.58 Ghs. Just dropped a 0-25k SMD pot parallel over R15. With no fan I get about 4.5% HW error. With a fan HW Error is about 3.2%. Ill set it for about 2.7 GH/s and that will improve the error rate even more. No need to flash as Luke's code quills a lot of the issues.



This is just a little side toy I am playing with. 3 BE, 1 "Blue Fury" and a 30 GH/s BFL on ARM SoC with a little Dlink DUB-H7. The OS is my own brew of Debian with a git pull from Luke-Jr from a few days back. Rock solid.

Might mod it by chaining in a a few more fury chips with their own power supplies and pcb board just for the “tinker factor”.
You don't have any bare bitfury chips to sell do you?

All the best
Onryo

How did you managed to get it to 2.7? I am also using the latest bfgminer. What commands are you using?
hero member
Activity: 714
Merit: 601
Right, I've accounted for all the extra faulty units that people messaged me about, since my last post.

The return address will be sent out in the next couple of hours, sorry for not doing it yesterday - I was unbelievably busy, but It doesn't make that much difference as obviously it couldn't have been posted until Monday.

*Edit* Instructions have been manually sent via PM. If you've got a faulty miner and have not yet received instructions, please get in touch.

Hey Outcast, when do you think I can get mine? Have you posted them yet? Been waiting patiently but then you don't answer my PM. Maybe I should ask if you still have them?

Regards

Hey mate,

As you wasn't able to come and collect it from me, I posted yours Friday - have you still not received it?

Will resend a tracking number now, and confirm the address it was shipped to via PM.

Sorry I didn't see your private message...
sr. member
Activity: 258
Merit: 250
Breizh Atao
Right, I've accounted for all the extra faulty units that people messaged me about, since my last post.

The return address will be sent out in the next couple of hours, sorry for not doing it yesterday - I was unbelievably busy, but It doesn't make that much difference as obviously it couldn't have been posted until Monday.

*Edit* Instructions have been manually sent via PM. If you've got a faulty miner and have not yet received instructions, please get in touch.

Hey Outcast, when do you think I can get mine? Have you posted them yet? Been waiting patiently but then you don't answer my PM. Maybe I should ask if you still have them?

Regards
hero member
Activity: 1246
Merit: 501
One of my miners has died.  On close inspection, it looks like the chip was installed with a bucket of solder and a 100W soldering iron.

How to I get a replacement?
hero member
Activity: 630
Merit: 501
Miner Setup And Reviews. WASP Rep.
newbie
Activity: 25
Merit: 0
Thx OutCast3k
SSH'd into the Debian armhf SoC about a day or two after kick off.
The Fury is doing Avg 2.77/ 2.58 Ghs. Just dropped a 0-25k SMD pot parallel over R15. With no fan I get about 4.5% HW error. With a fan HW Error is about 3.2%. Ill set it for about 2.7 GH/s and that will improve the error rate even more. No need to flash as Luke's code quills a lot of the issues.

https://i.imgur.com/gp8Lb8K.png

This is just a little side toy I am playing with. 3 BE, 1 "Blue Fury" and a 30 GH/s BFL on ARM SoC with a little Dlink DUB-H7. The OS is my own brew of Debian with a git pull from Luke-Jr from a few days back. Rock solid.

Might mod it by chaining in a a few more fury chips with their own power supplies and pcb board just for the “tinker factor”.
You don't have any bare bitfury chips to sell do you?

All the best
Onryo
hero member
Activity: 714
Merit: 601
Right, I've accounted for all the extra faulty units that people messaged me about, since my last post.

The return address will be sent out in the next couple of hours, sorry for not doing it yesterday - I was unbelievably busy, but It doesn't make that much difference as obviously it couldn't have been posted until Monday.

*Edit* Instructions have been manually sent via PM. If you've got a faulty miner and have not yet received instructions, please get in touch.
hero member
Activity: 734
Merit: 500
Seems like I have 4 not hashing Units.
full member
Activity: 229
Merit: 100
I may have one or two next week. Waiting for buyers to confirm they are dead.
hero member
Activity: 714
Merit: 601
I think i've got everyone accounted for now, will PM the instructions to everyone tomorrow so they can return them Monday.
Pages:
Jump to: