Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Futurebit driver #662

Open
wants to merge 13 commits into
base: bfgminer
Choose a base branch
from
4 changes: 4 additions & 0 deletions Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -277,6 +277,10 @@ if USE_DRILLBIT
bfgminer_SOURCES += driver-drillbit.c
endif

if USE_FUTUREBIT
bfgminer_SOURCES += driver-futurebit.c
endif

if USE_TWINFURY
bfgminer_SOURCES += driver-twinfury.c driver-twinfury.h
endif
Expand Down
5 changes: 5 additions & 0 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -578,6 +578,11 @@ BFG_DRIVER(bitmain,Bitmain Antminer S* series,SHA256d,no,[
has_asic=yes
])

BFG_DRIVER(,FutureBit,scrypt,no,[
need_lowl_vcom=yes
has_asic=yes
])

BFG_DRIVER(,Icarus,SHA256d,auto,[
need_dynclock=yes
need_lowl_vcom=yes
Expand Down
Loading