1
0
mirror of https://github.com/GOSTSec/sgminer synced 2025-01-11 07:17:58 +00:00

Throttling the BFLSC at 80 seems to prevent generating garbled responses of higher temps.

This commit is contained in:
Con Kolivas 2013-06-10 02:54:18 +10:00
parent 6fdc068f1b
commit 24d26d9949

View File

@ -658,7 +658,7 @@ static void __bflsc_initialise(struct cgpu_info *bflsc)
bflsc->drv->name, bflsc->device_id, err);
if (!bflsc->cutofftemp)
bflsc->cutofftemp = 90;
bflsc->cutofftemp = 80;
}
static void bflsc_initialise(struct cgpu_info *bflsc)
@ -1267,7 +1267,7 @@ static bool bflsc_get_temp(struct cgpu_info *bflsc, int dev)
bflsc->temp = temp;
if (bflsc->cutofftemp > 0 && temp > bflsc->cutofftemp) {
if (bflsc->cutofftemp > 0 && temp >= bflsc->cutofftemp) {
applog(LOG_WARNING, "%s%i:%s temp (%.1f) hit thermal cutoff limit %d, stopping work!",
bflsc->drv->name, bflsc->device_id, xlink,
temp, bflsc->cutofftemp);