1
0
mirror of https://github.com/GOSTSec/sgminer synced 2025-01-10 23:08:07 +00:00

Differentiate BFLSC device from regular bitforce and give warning if no support is compiled in.

This commit is contained in:
Con Kolivas 2013-04-26 15:18:34 +10:00
parent 863c9e27df
commit 05c9ece81e

View File

@ -248,6 +248,15 @@ reinit:
goto unshin;
}
if (strstr(buf, "SHA256 SC")) {
#ifdef USE_BFLSC
applog(LOG_DEBUG, "SC device detected, will defer to BFLSC driver");
#else
applog(LOG_WARNING, "SC device detected but no BFLSC support compiled in!");
#endif
goto unshin;
}
if (likely((!memcmp(buf, ">>>ID: ", 7)) && (s = strstr(buf + 3, ">>>")))) {
s[0] = '\0';
bitforce->name = strdup(buf + 7);