mirror of
https://github.com/GOSTSec/sgminer
synced 2025-01-22 20:44:19 +00:00
Check for 2 stray bytes on avalon reset.
This commit is contained in:
parent
629feb5f3f
commit
7dc3485fc2
@ -318,6 +318,11 @@ static int avalon_reset(struct cgpu_info *avalon, int fd)
|
||||
nanosleep(&p, NULL);
|
||||
|
||||
buf = (uint8_t *)&ar;
|
||||
/* We may also get 0x00 and 0x18 first */
|
||||
if (buf[0] != 0xAA)
|
||||
buf = &buf[1];
|
||||
if (buf[0] != 0xAA)
|
||||
buf = &buf[1];
|
||||
if (buf[0] == 0xAA && buf[1] == 0x55 &&
|
||||
buf[2] == 0xAA && buf[3] == 0x55) {
|
||||
for (i = 4; i < 11; i++)
|
||||
|
Loading…
x
Reference in New Issue
Block a user