Browse Source

for some reason network down. one simple cgminer command:

"cgminer -o 127.0.0.1:8888 -O fa:ke --avalon-options 115200:32:10:50:256"
can idle the avalon for safe power and protect chip
nfactor-troky
Xiangfu 12 years ago
parent
commit
f68930138d
  1. 15
      driver-avalon.c

15
driver-avalon.c

@ -586,8 +586,8 @@ static bool avalon_detect_one(const char *devpath)
} }
avalon_infos = realloc(avalon_infos, avalon_infos = realloc(avalon_infos,
sizeof(struct avalon_info *) * sizeof(struct avalon_info *) *
(total_devices + 1)); (total_devices + 1));
applog(LOG_INFO, "Avalon Detect: Found at %s, mark as %d", applog(LOG_INFO, "Avalon Detect: Found at %s, mark as %d",
devpath, avalon->device_id); devpath, avalon->device_id);
@ -618,14 +618,11 @@ static bool avalon_detect_one(const char *devpath)
info->temp_old = 0; info->temp_old = 0;
info->frequency = frequency; info->frequency = frequency;
/* Do something for failed reset ? */ /* Set asic to idle mode after detect */
if (0) { avalon_idle(avalon);
/* Set asic to idle mode after detect */ avalon->device_fd = -1;
avalon_idle(avalon);
avalon->device_fd = -1;
avalon_close(fd); avalon_close(fd);
}
return true; return true;
} }

Loading…
Cancel
Save