Bitcoin Forum
May 28, 2024, 10:22:18 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 2 3 4 5 6 7 8 9 10 11 [12] 13 »
221  Bitcoin / Hardware / Re: [ANN] Bitfury is looking for alpha-testers of first chips! FREE MONEY HERE! on: July 26, 2013, 09:03:28 AM
Power regulator is the APTS050A0X3-SRPHZ module. And the junk around the module is not heat stress, but flux residue.

Most of the board is reflowed, but I decided to hand solder to power module later. This turned out to be quite a messy deal. The pins of the module are hard to reach underneath the PCB, and the solid copper pours around the module make it hard to get the temperature up.
222  Bitcoin / Hardware / Re: [ANN] Bitfury is looking for alpha-testers of first chips! FREE MONEY HERE! on: July 26, 2013, 08:55:22 AM
cscape - are any schematics published/available anywhere? And/or PCB drawings? (even if that's just the H-Card)
And/or the specs and list of components? (e.g. what kind of filter capacitors, how many, where, etc)

I'm guessing you guys have already gone trough the pain of testing various components ... so any future designs won't have to discover again the hot water.
We haven't actually tested that many components. We picked a certain type, tested it, saw it performed well, and stuck with it. In the bitcoin world, time = money Smiley Around each ASIC there's a ring of 3x5 small caps from AVX, part #04026D105KAT2A (0402 size, 6.3V, 1uF, X5R). In addition, there are groups of 8 caps, 47uF, 6.3V, X7R. On the S-HASH board they are 1206 size, but on the H-CARD they're 1210 because these are a lot easier to get, and there's plenty of room anyway.

The amount of caps is probably overkill, but you can never have too much overkill.
223  Bitcoin / Hardware / Re: [ANN] Bitfury is looking for alpha-testers of first chips! FREE MONEY HERE! on: July 26, 2013, 07:55:06 AM
I will send you contact of person developing board for avalon, but wants to switch to bitfury, because of much better spec.
Ok. No problem. I don't have any samples anymore, unfortunately.



224  Bitcoin / Hardware / Re: [ANN] Bitfury is looking for alpha-testers of first chips! FREE MONEY HERE! on: July 26, 2013, 05:35:58 AM

is this the same board as it was advertised here?
http://www.bitfurystrikesback.com/product/25gh-miner-starter-kit-october-delivery/

or this this a new design? it does not tell which board or design is used on bitfurystrikesback.com
No, it's not the same board. Look at the pictures:


The right side of the board with the 16 ASICs is virtually identical, but the left side is different. On the H-CARD from bitfurystrikesback.com, you see that the left side is much simpler. It only has the power regulator for the chip core voltage and the edge connector.

On my S-HASH board, the left side contains a different power regulator (50A instead of 30A), and a CPU with Ethernet interface. Functionally, they are different too. The H-CARD on bitfurystrikesback.com plugs into an M-BOARD, and the M-BOARD hooks up to a Raspberry Pi computer board with the miner code.

My S-HASH board works stand-alone. You don't need any other boards, no Raspberry Pi. Just hook it up to 12V power supply, plug the ethernet cable in your internet router, configure it for a mining pool, and start making coins.

Of course, the S-HASH board will be more costly to produce than a bitfurystrikesback H-CARD, simply because it has more components and a more expensive power regulator. Of course, when you add the M-BOARD and the Raspberry PI, the S-HASH board will be cheaper to produce. But if you need more hashing power, and stick in additional H-CARDs, the bitfurystrikesback system will win again. So, it all depends on what people need.

The other difference is that the H-CARD runs at a lower core voltage, and will be more power efficient. So, for large applications where electricity is an important part of the cost, that may turn out to be a better choice. For small home miners, the cost of purchase will be more important, and power consumption/heat generation will be secondary. In that case, running the chips faster will get more coins for your coins.  Cheesy
225  Bitcoin / Hardware / Re: [ANN] Bitfury is looking for alpha-testers of first chips! FREE MONEY HERE! on: July 25, 2013, 07:37:02 PM
How to determine that work is finished (all nonces are scanned)? When knowing clock this is bassically a simple calculation but when clock is unknown? Bitfury said that clock is dependent on voltage and will propably vary between chips. So, there's any command that chips may be polled with?
Thanks.

This line in spitest.c checks if the job is switched:

if (newbuf[16] != oldbuf[16]) { /* Job switched! Upload current vector and start processing new one! */

When a job switches, all nonces have been scanned (actually not all, as the cores only scan 756 out of every 1024 possibilities). While the cores work on the first job, you must prepare the next job, and send it to the chip. As soon as the job is finished, the chip will start on the next one, and you can read the results of the first. When the chip has produced some nonces they need to be decoded and checked in various ways (see spitest.c code).
226  Bitcoin / Hardware / Re: [ANN] Bitfury is looking for alpha-testers of first chips! FREE MONEY HERE! on: July 25, 2013, 06:40:06 AM
Yes, that's the CPU model, but there are plenty of other models that could replace it without loss in functionality. Apart from ethernet, plenty of RAM and enough core power to do some SHA256 hashing the are not too many requirements.

The firmware is proprietary.

Edit: to give an example about the SPI interface, you can look at bitfury's example/test code here.
227  Bitcoin / Hardware / Re: [ANN] Bitfury is looking for alpha-testers of first chips! FREE MONEY HERE! on: July 25, 2013, 04:05:35 AM
wow ! Very nice work, congratulation !
How did you manage to make those chips work in chain (if it is not a secret Wink ?
It's not a secret. Bitfury described it earlier in this thread. There's a SPI command that causes a chip to forward all SPI signals to/from the next chip. So, when you're talking to the first chip, send the command, and then you'll be talking to the next chip, send the command again, and you're talking to the 3rd chip. After you talked to the last chip, send another command to break the chain. This command will be broadcast through the entire chain, and cause each chip to stop forwarding. After this, you're talking to the first chip again and the process can be repeated.
228  Bitcoin / Hardware / Re: [ANN] Bitfury is looking for alpha-testers of first chips! FREE MONEY HERE! on: July 24, 2013, 08:22:17 PM
Cscape: Can we buy board from you without asic chips on it.?
No, not at this moment. I'll first see if there's anybody interested in a commercial collaboration.

Also, mounting QFN48 chips with thermal pad and a few hundred 0402 parts is not something that a lot of people can do reliably.
229  Bitcoin / Hardware / Re: [ANN] Bitfury is looking for alpha-testers of first chips! FREE MONEY HERE! on: July 24, 2013, 08:06:34 PM
cscape what power regulator are you using?
This Lineage Power module.
230  Bitcoin / Hardware / Re: [ANN] Bitfury is looking for alpha-testers of first chips! FREE MONEY HERE! on: July 24, 2013, 08:05:19 PM
It's beautiful cscape! So you are atm hashing at a steady 40GH/s without heatsinking? Nice!!
(Hmm... forum ate my reply. I'll edit this post and add it again).

Pretty much 40GH, yes. This is just a random sample of 16 chips, from what I suppose was the first batch of ASICs. There's some variation between them, and there's some fluctuations as I measure the hashing rate based on the count of valid nonces produced, and not the operating speed.
231  Bitcoin / Hardware / Re: [ANN] Bitfury is looking for alpha-testers of first chips! FREE MONEY HERE! on: July 24, 2013, 07:06:10 PM
Is there any chance of retrofitting current H model boards for a little overclocking?  I have no fear of a solder iron.  Smiley
The voltage regulator on the H-CARD has a 30A capacity, which limits the overclocking range, and there are no simple replacements for the regulator.
232  Bitcoin / Hardware / Re: [ANN] Bitfury is looking for alpha-testers of first chips! FREE MONEY HERE! on: July 24, 2013, 07:04:22 PM
For cooling I have a standard PC case fan set up above the board, blowing down on the surface. No heat sink, so it's not an optimal set up. The board has a couple of mounting holes, and a flat back, so the idea is to mount a heat sink on the back.

No plans yet, just having fun. I will not be doing any manufacturing or retail selling myself, but I'm open for collaborations with other companies.
233  Bitcoin / Hardware / Re: [ANN] Bitfury is looking for alpha-testers of first chips! FREE MONEY HERE! on: July 24, 2013, 06:46:54 PM
First prototype of Bitfury S-HASH board is hashing:


Features:
  • 16 Bitfury ASIC capacity
  • Adjustable (through 0805 SMT resistor) voltage regulator between 0.7 and 0.9V
  • Core voltage regulator has 50A capacity, so chips can be overclocked.
  • On-board ARM Cortex M3 processor with standard RJ-45 100 Mbps Ethernet port.
  • Built-in mining software can operate stand-alone. No PC or Raspberry PI needed, just an internet connection.
  • TCP/IP stack with DHCP and DNS support. Just fill in pool server name, port number, username and password.
  • Support for Stratum and backup mining pools.
  • Built-in small webserver for chip status/speed reports.
  • PCB temperature sensor, could be used for automatic shutdown when temperature gets too high.

If you don't have the budget for a large number of chips, overclocking is the best option, as it will get you 40GH/sec out of a card (probably more with better cooling), instead of 25GH for a standard H-CARD for the same 16 chips. At 40GH/sec, the card uses about 35 Watts, running off a standard 12V DC supply.

234  Bitcoin / Hardware / Re: Custom Case Design for Bitfury Miners on: July 16, 2013, 07:57:38 PM
Looks good....
235  Economy / Service Announcements / Re: [ANN] Bitfury ASIC sales in EU and Europe on: July 08, 2013, 01:10:10 PM
thanks a lot cscape, so the H boards are directly put into the master board is that right?, so the distance between the h boards is already defined by the distances which the master boards provide?
Yes, they plug in directly. And yes, if you buy the master board together with the h-cards, the distance between the cards is fixed at 20 mm. Also, the SPI bus goes in one card, through all the chips, and then out on the other side, into the next card. So, if you get a master board with only 8 h-cards, you must use slots 0-7.  You can't skip slots, because it would break the SPI chain. Of course, if you're not afraid of soldering, you could put some jumper wires across the unused connectors, or make some dummy PCB edge connectors that connect inputs to outputs and stick those in unused slots.
236  Economy / Service Announcements / Re: [ANN] Bitfury ASIC sales in EU and Europe on: July 08, 2013, 12:28:40 PM
Here's a picture of the master board:
237  Economy / Service Announcements / Re: [ANN] Bitfury ASIC sales in EU and Europe on: July 08, 2013, 07:49:51 AM
If you look at the board here: http://www.bitfurystrikesback.com/product/bitfury-55nm-asic-h-board/, you'll see a main area with the 16 ASICs, and a strip at the bottom with the edge connector and power regulator. On the other side of the board, there are a handful of small components underneath the power regulator. There are no components underneath the square 110x110 mm ASIC area.

The spacing between the boards depends mostly on your cooling arrangement. The closer they are, the harder it will be to get sufficient airflow. I think 20 mm is a good lower limit. The thickness of the components sets an absolute limit of about 10 mm (excluding heat sinks), but it will be challenging to get the heat out.

There is no temperature sensor on the boards.
238  Economy / Service Announcements / Re: [ANN] Bitfury ASIC sales in EU and Europe on: July 08, 2013, 05:27:32 AM
I'm also wondering if it would be ok to attach a small heatsink to each chip (with those thermal pads with glue on them - like VGA and north/southbridge coolers)? Would this help with cooling or is most of the heat dissipated through the PCB itself?
The chips are quite small, and dissipate most of their heat through the big ground/thermal pad on the bottom, and plenty of vias spread that heat effectively through the PCB. If you want to attach a heat sink, it's best done at the back side of the PCB, which has been left free of components in the main ASIC area. Six mounting holes in the PCB could be used for screws, or you could use an adhesive type.
239  Economy / Service Announcements / Re: [ANN] Bitfury ASIC sales in EU and Europe on: July 07, 2013, 04:28:58 PM
We're still doing full temperature tests. However, for a single hashing card, the dissipation is actually 15-20W, not 40W.
240  Economy / Service Announcements / Re: [ANN] Bitfury ASIC sales in EU and Europe on: July 07, 2013, 03:24:43 PM
Whats the dimensions of the hashing board and the master board?
Does the master board connect to the RasPi using usb or gpio?
Does the pi run cgminer or some custom miner software?
Master board is 80x368 mm. Hashing board is 110x139 mm. It's connected using SPI (on the GPIO connector). I don't know about the software.
Pages: « 1 2 3 4 5 6 7 8 9 10 11 [12] 13 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!