1
0
mirror of https://github.com/GOSTSec/sgminer synced 2025-01-22 20:44:19 +00:00

API pgaidentify - unsupported message should be a warning

This commit is contained in:
Kano 2012-09-04 12:57:22 +10:00
parent 9487ba05cd
commit 9950cff5ae
2 changed files with 2 additions and 2 deletions

View File

@ -266,7 +266,7 @@ The list of requests - a (*) means it requires privileged access - and replies a
and currently only BFL singles support this command
On a BFL single it will flash the led on the front
of the device for appoximately 4s
All other non BFL PGA devices will return an error
All other non BFL PGA devices will return a warning
status message stating that they dont support it
This adds a 4s delay to the BFL share being processed
so you may get a message stating that procssing took

2
api.c
View File

@ -551,7 +551,7 @@ struct CODES {
{ SEVERITY_SUCC, MSG_DEBUGSET,PARAM_STR, "Debug settings" },
#ifdef HAVE_AN_FPGA
{ SEVERITY_SUCC, MSG_PGAIDENT,PARAM_PGA, "Identify command sent to PGA%d" },
{ SEVERITY_ERR, MSG_PGANOID, PARAM_PGA, "PGA%d does not support identify" },
{ SEVERITY_WARN, MSG_PGANOID, PARAM_PGA, "PGA%d does not support identify" },
#endif
{ SEVERITY_FAIL, 0, 0, NULL }
};