cli: support --continuous option for continuous sampling
This commit is contained in:
parent
8a839354c1
commit
74b9b43836
|
@ -54,6 +54,7 @@ static int capabilities[] = {
|
|||
|
||||
/* These are really implemented in the driver, not the hardware. */
|
||||
HWCAP_LIMIT_SAMPLES,
|
||||
HWCAP_CONTINUOUS,
|
||||
0,
|
||||
};
|
||||
|
||||
|
@ -654,7 +655,7 @@ void receive_transfer(struct libusb_transfer *transfer)
|
|||
g_free(cur_buf);
|
||||
|
||||
num_samples += cur_buflen;
|
||||
if ((unsigned int)num_samples > limit_samples) {
|
||||
if (limit_samples && (unsigned int) num_samples > limit_samples) {
|
||||
hw_stop_acquisition(-1, user_data);
|
||||
}
|
||||
} else {
|
||||
|
|
Loading…
Reference in New Issue