1
0
mirror of https://github.com/GOSTSec/sgminer synced 2025-02-02 10:04:33 +00:00

Annotating frequency changes with the changed from value

This commit is contained in:
nelisky 2012-04-25 01:57:15 -07:00
parent b29edd111d
commit 6bb3c40d20

View File

@ -265,6 +265,7 @@ int libztex_selectFpga(struct libztex_device *ztex, int number) {
int libztex_setFreq(struct libztex_device *ztex, uint16_t freq) { int libztex_setFreq(struct libztex_device *ztex, uint16_t freq) {
int cnt; int cnt;
uint16_t oldfreq = ztex->freqM;
if (freq > ztex->freqMaxM) if (freq > ztex->freqMaxM)
freq = ztex->freqMaxM; freq = ztex->freqMaxM;
@ -275,7 +276,8 @@ int libztex_setFreq(struct libztex_device *ztex, uint16_t freq) {
return cnt; return cnt;
} }
ztex->freqM = freq; ztex->freqM = freq;
applog(LOG_WARNING, "%s: Frequency change to %0.2f Mhz", ztex->repr, ztex->freqM1 * (ztex->freqM + 1)); applog(LOG_WARNING, "%s: Frequency change from %0.2f to %0.2f Mhz",
ztex->repr, ztex->freqM1 * (oldfreq + 1)), ztex->freqM1 * (ztex->freqM + 1));
return 0; return 0;
} }