Search content
Sort by

Showing 14 of 14 results by NilBit
Post
Topic
Board Announcements (Altcoins)
Re: [ANN][CLAM] CLAMs, Proof-Of-Chain, Proof-Of-Working-Stake, a.k.a. "Clamcoin"
by
NilBit
on 09/01/2018, 22:53:50 UTC
I had trouble synchronizing, only getting a few or no active connections to the network.

Adding nodes manually through the console command addnode seems to have fixed this.

www.presstab.pw/phpexplorer/CLAM/nodes.php
Post
Topic
Board Announcements (Altcoins)
Re: [ANN]Bitcore- BTX - SEGWIT - lowest fee - hybrid fork 1:0.5 of Bitcoin
by
NilBit
on 09/12/2017, 23:50:30 UTC
Heck I just want to get the bitcore out of my bitcoin so I can get the airdrop every Monday. I try to follow the https://bitcore.cc/claim-hw.php but it is not working for me. I am using windows with a trezor with segwit addresses. It seems that the link goes to a linux build. I tried on linux but it says that I don't have hardware installed but I do. So I go back over to windows and try to get it to work through using the PyQt5 thing but I am getting lost in there. Any better way of going about this?

If I trusted that it was a safe release, then I would try the electrum-3.0.2-13-g7f8d781-portable.exe:

https://github.com/LIMXTEC/electrum-btx-claim/releases

The public key is unverified.
Post
Topic
Board Announcements (Altcoins)
Re: [ANN]Bitcore- BTX - SEGWIT - lowest fee - hybrid fork 1:0.5 of Bitcoin
by
NilBit
on 04/12/2017, 18:36:45 UTC
There is a dead link on the first page.

● Trezor and MultiSig Claiming (beta!): https://bitcore.cc/BitCore (BTX) tutorial - Trezor Legacy Account & Electrum 2.8.2 & 2.9.3 claim.pdf

Anybody tried this method?
Post
Topic
Board Mining (Altcoins)
Re: Swedish ASIC miner company kncminer.com
by
NilBit
on 22/07/2014, 21:28:26 UTC
Post
Topic
Board Mining (Altcoins)
Re: Swedish ASIC miner company kncminer.com
by
NilBit
on 19/05/2014, 14:46:25 UTC
Post
Topic
Board Mining support
Re: Hacking The KNC Firmware: Overclocking
by
NilBit
on 15/05/2014, 15:40:41 UTC
I made a small bin file for those not sure how to apply oc setting via cgminer.sh.

The bin file is loaded via the upgrade tab in miner administration just like you would upload a firmware. On reboot the modification will be gone again and bin file will have to be uploaded again in order to apply oc setting.

The bin file contains a folder with two files:

runme.sh
Code:
#!/bin/sh
cp cgminer.sh /etc/init.d/cgminer.sh
echo "900MHz OC setting copied! Please go back to Miner Settings page and Restart Miner without rebooting by clicking here."

cgminer.sh
Code:
#!/bin/sh

PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin

use_bfgminer=
if [ -f /config/miner.conf ]; then
. /config/miner.conf
fi
if [ "$use_bfgminer" = true ] ; then
DAEMON=/usr/bin/bfgminer
NAME=bfgminer
DESC="BFGMiner daemon"
EXTRA_OPT="-S knc:auto"
else
DAEMON=/usr/bin/cgminer
NAME=cgminer
DESC="Cgminer daemon"
EXTRA_OPT=
fi

set -e

test -x "$DAEMON" || exit 0

do_start() {
# Stop SPI poller
spi_ena=0
i2cset -y 2 0x71 2 $spi_ena

good_ports=""
bad_ports=""

# CLear faults in megadlynx's
for b in 3 4 5 6 7 8 ; do
for d in 0 1 2 3 4 5 6 7 ; do
i2cset -y $b 0x1$d 3 >/dev/null 2>&1 || true
done
done

for p in 0 1 2 3 4 5 ; do
i2cset -y 2 0x71 1 $((p+1))
good_flag=0
ar="$(spi-test -s 50000 -OHC -D /dev/spidev1.0 0x80,3,0,0,0,0,0,0 | tail -c 13)"
                if [ "x$ar" = "x00 30 A0 01" ] ; then
good_flag=1
fi
ar="$(spi-test -s 50000 -OHC -D /dev/spidev1.0 0x80,2,0,0,0,0,0,0 | tail -c 13)"
                if [ "x$ar" = "x00 30 A0 01" ] ; then
good_flag=1
fi
ar="$(spi-test -s 50000 -OHC -D /dev/spidev1.0 0x80,1,0,0,0,0,0,0 | tail -c 13)"
                if [ "x$ar" = "x00 30 A0 01" ] ; then
good_flag=1
fi
ar="$(spi-test -s 50000 -OHC -D /dev/spidev1.0 0x80,0,0,0,0,0,0,0 | tail -c 13)"
                if [ "x$ar" = "x00 30 A0 01" ] ; then
good_flag=1
fi

if [ "$good_flag" = "1" ] ; then
good_ports=$good_ports" $p"
else
bad_ports=$bad_ports" $p"
fi
done

if [ -n "$good_ports" ] ; then
for p in $good_ports ; do

# Re-enable PLL START MOD FW 1.01
i2cset -y 2 0x71 1 $((p+1))
for c in 0 1 2 3 ; do
cmd=$(printf "0x84,0x%02X,0,0" $c)
spi-test -s 50000 -OHC -D /dev/spidev1.0 $cmd >/dev/null
# cmd=$(printf "0x86,0x%02X,0x02,0x01" $c)
# cmd=$(printf "0x86,0x%02X,0x02,0x11" $c)
# cmd=$(printf "0x86,0x%02X,0x02,0x21" $c)
cmd=$(printf "0x86,0x%02X,0x02,0x31" $c)
# cmd=$(printf "0x86,0x%02X,0x02,0x41" $c)
# cmd=$(printf "0x86,0x%02X,0x02,0x51" $c)
spi-test -s 50000 -OHC -D /dev/spidev1.0 $cmd >/dev/null
cmd=$(printf "0x85,0x%02X,0,0" $c)
spi-test -s 50000 -OHC -D /dev/spidev1.0 $cmd >/dev/null
done
# END MOD FW 1.01

# re-enable all cores
i=0
while [[ $i -lt 192 ]] ; do
i2cset -y 2 0x2$p $i 1
i=$((i+1))
done
spi_ena=$(( spi_ena | (1 << $p) ))
done
fi
if [ -n "$bad_ports" ] ; then
for p in $bad_ports ; do

# Disable PLL START MOD FW 1.01
i2cset -y 2 0x71 1 $((p+1))
for c in 0 1 2 3 ; do
cmd=$(printf "0x84,0x%02X,0,0" $c)
spi-test -s 50000 -OHC -D /dev/spidev1.0 $cmd >/dev/null
done
# END MOD FW 1.01

# disable all cores
i=0
while [[ $i -lt 192 ]] ; do
i2cset -y 2 0x2$p $i 0
i=$((i+1))
done
spi_ena=$(( spi_ena & ~(1 << $p) ))
done
fi

# Disable direct SPI
i2cset -y 2 0x71 1 0

# Enable SPI poller
i2cset -y 2 0x71 2 $spi_ena

start-stop-daemon -b -S -x screen -- -S cgminer -t cgminer -m -d "$DAEMON" --api-listen -c /config/cgminer.conf $EXTRA_OPT
}

do_stop() {
killall -9 bfgminer cgminer 2>/dev/null || true
}
case "$1" in
  start)
        echo -n "Starting $DESC: "
do_start
        echo "$NAME."
        ;;
  stop)
        echo -n "Stopping $DESC: "
do_stop
        echo "$NAME."
        ;;
  restart|force-reload)
        echo -n "Restarting $DESC: "
        do_stop
        do_start
        echo "$NAME."
        ;;
  *)
        N=/etc/init.d/$NAME
        echo "Usage: $N {start|stop|restart|force-reload}" >&2
        exit 1
        ;;
esac

exit 0

runme.sh will copy a modified version of cgminer.sh set for 900MHz to /etc/init.d/ overwriting the original cgminer.sh

After uploading the bin file, you need to go to the mining tab in administration and pick Restart Miner in order to apply setting.

Content of bin file can be examined and modified using e.g. 7zip

Other oc settings are listed in the modified cgminer.sh like:

Code:
# cmd=$(printf "0x86,0x%02X,0x02,0x01" $c)
# cmd=$(printf "0x86,0x%02X,0x02,0x11" $c)
# cmd=$(printf "0x86,0x%02X,0x02,0x21" $c)
 cmd=$(printf "0x86,0x%02X,0x02,0x31" $c)
# cmd=$(printf "0x86,0x%02X,0x02,0x41" $c)
# cmd=$(printf "0x86,0x%02X,0x02,0x51" $c)

# are disabled settings

Active setting is 231 which corresponds to 900MHz:

Code:
cmd=$(printf "0x86,0x%02X,0x02,0x31" $c)

Lowest disabled setting is 201 which corresponds to 825MHz:

Code:
# cmd=$(printf "0x86,0x%02X,0x02,0x01" $c)

Highest disabled setting is 251 which corresponds to 950MHz:

Code:
# cmd=$(printf "0x86,0x%02X,0x02,0x51" $c)

If you wish to go beyond these ranges, then look up the list of settings posted in various threads here.

Applying any other setting than the active 231 setting require that you modify the cgminer.sh in the bin file.

I take no responsibility for any damage due to oc if such should occur. The 231 setting is quite safe if you have proper cooling, but you will probably need to adjust die voltages to match the higher asic frequency.

Any changes made to voltages in Advanced Settings, will reset frequency to stock default setting and you will have to pick Restart Miner in the Mining tab in order to reapply oc settings.

Download available here:

https://www.dropbox.com/s/8w4dacsp8r1u9eu/1.01.900MHz.bin

Thanks to all those who shared their findings in this great thread.
Post
Topic
Board Bitcoin Discussion
Re: "Goxxed" is a terrible word
by
NilBit
on 07/04/2014, 17:48:47 UTC
Post
Topic
Board Mining support
Re: Hacking The KNC Firmware: Overclocking
by
NilBit
on 19/03/2014, 19:55:01 UTC
If you change the value 384 into 1152 in this line of procs.awk, then it seems to work for a 6 module miner:

Code:
for( y=1 ; y <= 384 ; y++) {

Just running very briefly after restart to test:

Code:
die   Mh/s      HW%      min   max     Volt   Amp   Watt      Gh/W
0_0  646.56    0.000  ( 0.00 / 0.00 )  1.00  1.00  1.00     31.035
0_1  609.13    0.000  ( 0.00 / 0.00 )  1.00  1.00  1.00     29.238
0_2  595.10    1.389  ( 0.00 / 66.67 )  1.00  1.00  1.00     28.565
0_3  625.97    0.000  ( 0.00 / 0.00 )  1.00  1.00  1.00     30.046
40.0 C
1_0  684.10    0.000  ( 0.00 / 0.00 )  1.00  1.00  1.00     32.837
1_1  606.42    0.000  ( 0.00 / 0.00 )  1.00  1.00  1.00     29.108
1_2  632.37    0.000  ( 0.00 / 0.00 )  1.00  1.00  1.00     30.354
1_3  563.11    0.000  ( 0.00 / 0.00 )  1.00  1.00  1.00     27.029
41.0 C
2_0  629.06    0.000  ( 0.00 / 0.00 )  1.00  1.00  1.00     30.195
2_1  670.99    1.389  ( 0.00 / 66.67 )  1.00  1.00  1.00     32.208
2_2  563.07    0.000  ( 0.00 / 0.00 )  1.00  1.00  1.00     27.027
2_3  609.80    0.000  ( 0.00 / 0.00 )  1.00  1.00  1.00     29.270
44.5 C
3_0  669.40    0.000  ( 0.00 / 0.00 )  1.00  1.00  1.00     32.131
3_1  594.51    0.000  ( 0.00 / 0.00 )  1.00  1.00  1.00     28.536
3_2  634.89    0.000  ( 0.00 / 0.00 )  1.00  1.00  1.00     30.475
3_3  567.33    0.000  ( 0.00 / 0.00 )  1.00  1.00  1.00     27.232
48.0 C
4_0  599.24    0.000  ( 0.00 / 0.00 )  1.00  1.00  1.00     28.763
4_1  650.87    0.000  ( 0.00 / 0.00 )  1.00  1.00  1.00     31.242
4_2  565.48    0.000  ( 0.00 / 0.00 )  1.00  1.00  1.00     27.143
4_3  689.70    0.000  ( 0.00 / 0.00 )  1.00  1.00  1.00     33.105
43.0 C
5_0  573.87    0.000  ( 0.00 / 0.00 )  1.00  1.00  1.00     27.546
5_1  698.01    0.260  ( 0.00 / 12.50 )  1.00  1.00  1.00     33.504
5_2  506.54    0.000  ( 0.00 / 0.00 )  1.00  1.00  1.00     24.314
5_3  661.96    0.000  ( 0.00 / 0.00 )  1.00  1.00  1.00     31.774
45.0 C

Great stuff. Smiley
Post
Topic
Board Mining (Altcoins)
Re: 0.02 BTC for anyone who has ATI OpenCL APP SDK for Windows XP
by
NilBit
on 07/02/2014, 21:06:32 UTC
I have this old link bookmarked which might be an option if you can't get the the download working.

http://bitcoinminer.com/post/3828447301/ati-stream-sdk-downloads
Post
Topic
Board Mining support
Re: Hacking The KNC Firmware: Overclocking
by
NilBit
on 16/01/2014, 20:30:45 UTC
I beleive that KnC has released documentation for the clock settings, so hopefully soon we will see the closck settings integrated in cgminer and bfgminer settings:

https://github.com/KnCMiner/jupiter-hw-docs/blob/master/AN_108_Command_Processor_for_MPSSE_and_MCU_Host_Bus_Emulation_Modes.pdf



Post
Topic
Board Mining support
Re: Hacking The KNC Firmware: Overclocking
by
NilBit
on 13/01/2014, 21:56:52 UTC
Hi,

I am using Oct Jupiter with 0.99.1-tune firmware. After I pressed "Reset factory settings" on Advanced tab, I can no longer access Advanced tab at all. Instead I have browser message with "Fetch advanced configuration/status failed." and "OK" button. Restarting, flashing to earlier firmware and flashing back to 0.99.1-tune does not resolved the issue. Jupiter itself is mining away nicely, but I can't access Advanced tab anymore.
Any one had similar problem?
Ctrl+F5?

Of course I tried it, doesn't work.

Try to run:

waas -d -o /config/advanced.conf
Post
Topic
Board Hardware
Re: KnC Juniper BBB issue recovery
by
NilBit
on 05/01/2014, 01:14:51 UTC
Post
Topic
Board Mining (Altcoins)
Re: Swedish ASIC miner company kncminer.com
by
NilBit
on 06/12/2013, 22:45:47 UTC
Anyone else have a die that shows up as "off" in BertMod?

http://oi39.tinypic.com/10wjjhc.jpg

With SPI voltage at 3.3v, I've tried adjusting the individual die voltage from the lowest to the highest without effect.

http://oi40.tinypic.com/sllpgn.jpg

Die 4 is not hashing. You are running minimum voltage on die 4. Try to increase the die 4 voltage and reduce the voltage on the other dies as long as they are working without any disabled cores.

Power on die 1 is on the limit of what I would dare running long term.
Post
Topic
Board Skandinavisk
Re: Bitcoin exchange suited for danes?
by
NilBit
on 20/11/2013, 19:56:27 UTC