Skip to content

Commit

Permalink
BTB show C/MHz/mV for device
Browse files Browse the repository at this point in the history
  • Loading branch information
kanoi committed Aug 23, 2013
1 parent 5b338b2 commit 87e5c76
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion driver-avalon.c
Expand Up @@ -1370,7 +1370,14 @@ static void get_avalon_statline_before(char *buf, size_t bufsiz, struct cgpu_inf
int lowfan = 10000;

if (usb_ident(avalon) == IDENT_BTB) {
tailsprintf(buf, bufsiz, "%2d/%3dC %4dmV | ", info->temp0, info->temp2, info->core_voltage);
int temp = info->temp0;
if (info->temp2 > temp)
temp = info->temp2;
if (temp > 99)
temp = 99;
if (temp < 0)
temp = 0;
tailsprintf(buf, bufsiz, "%2dC %3d %4dmV | ", temp, info->frequency, info->core_voltage);
} else {
/* Find the lowest fan speed of the ASIC cooling fans. */
if (info->fan1 >= 0 && info->fan1 < lowfan)
Expand Down

0 comments on commit 87e5c76

Please sign in to comment.