7
mirror of https://github.com/EEVengers/ThunderScope.git synced 2025-04-04 21:36:55 +00:00

various updates

This commit is contained in:
profezzorn 2022-02-16 21:10:30 -08:00
parent b6c9e37abd
commit f33a25602e
3 changed files with 42 additions and 13 deletions
Software/libthunderscopehw
examples
thunderscopehwcalibrate
thunderscopehwdump
library

View File

@ -17,12 +17,14 @@ struct Option {
struct Option options[] = {
{"device", true, 1 },
{"verbose", false, 2 },
{"retries", true, 3 },
};
#define TS_RUN(X) do { \
enum ThunderScopeHWStatus ret = thunderscopehw_##X; \
if (ret != THUNDERSCOPEHW_STATUS_OK) { \
fprintf(stderr, "thunderscope_%s failed @ line %d, error = %s\n", #X, __LINE__, thunderscopehw_describe_error(ret)); \
fprintf(stderr, "thunderscopehw_%s failed @ line %d, error = %s\n", #X, __LINE__, thunderscopehw_describe_error(ret)); \
exit(1); \
} \
} while(0)
@ -53,6 +55,8 @@ int mygetopt(int argc, char** argv) {
}
int main(int argc, char** argv) {
int verbose = 0;
int retries = 1;
uint64_t scope_id = 0;
uint64_t samples = 0;
int samplerate = 0;
@ -64,6 +68,15 @@ int main(int argc, char** argv) {
exit(1);
}
continue;
case 2:
verbose++;
continue;
case 3:
if (!sscanf(optarg, "%d", &retries)) {
fprintf(stderr, "--retries needs a number.\n");
exit(1);
}
continue;
default:
continue;
case -1:
@ -111,15 +124,20 @@ int main(int argc, char** argv) {
usleep(500000);
#endif
double minoffset = -0.5;
double maxoffset = 0.5;
for (int i =0; i < 1000; i++) {
for (int i = 0; i < retries; i++) {
double minoffset = -0.5;
double maxoffset = 0.5;
for (int j = 0; j < 20; j++) {
double midoffset = (minoffset + maxoffset) / 2;
TS_RUN(voltage_offset_set(ts, channel, midoffset));
TS_RUN(start(ts));
TS_RUN(read(ts, buffer, BUFFER_SIZE));
enum ThunderScopeHWStatus status = thunderscopehw_read(ts, buffer, BUFFER_SIZE);
if (status != THUNDERSCOPEHW_STATUS_OK) {
fprintf(stderr, "thunderscopehw_read failed, error = %s\n", thunderscopehw_describe_error(status));
j--;
TS_RUN(stop(ts));
continue;
}
// Convert signed output to unsigned output
for (size_t i = 0; i < BUFFER_SIZE; i++) {
buffer[i] += 0x80;
@ -133,10 +151,12 @@ int main(int argc, char** argv) {
if (buffer[i] < 0x80) low++;
sum += buffer[i];
}
// fprintf(stderr," min = %8.4f max = %8.4f mid = %8.4f high=%d low=%d avg=%f\n",
// minoffset, maxoffset, midoffset,
// high, low,
// sum / (double)BUFFER_SIZE);
if (verbose) {
fprintf(stderr," min = %8.4f max = %8.4f mid = %8.4f high=%d low=%d avg=%f\n",
minoffset, maxoffset, midoffset,
high, low,
sum / (double)BUFFER_SIZE);
}
if (high > low) {
minoffset = midoffset;
} else {

View File

@ -5,6 +5,10 @@
#include <inttypes.h>
#include <string.h>
#ifndef WIN32
#include <unistd.h>
#endif
void write32(uint64_t x, FILE* f) {
uint32_t v = 0;
if (x < (uint64_t)0xFFFFFFFF) v = (uint32_t)x;
@ -168,7 +172,7 @@ int main(int argc, char** argv) {
}
break;
case 3: // voffset
ret = thunderscopehw_voltage_offset_set(ts, channel, atoi(optarg));
ret = thunderscopehw_voltage_offset_set(ts, channel, atof(optarg));
if (ret != THUNDERSCOPEHW_STATUS_OK) {
fprintf(stderr, "Failed to set voffset. error =%s\n", thunderscopehw_describe_error(ret));
exit(1);
@ -235,6 +239,11 @@ int main(int argc, char** argv) {
uint16_t block_align;
uint16_t bits_per_sample;
};
#ifdef WIN32
Sleep(500);
#else
usleep(500000);
#endif
struct Fmt fmt;
fmt.pcm = 1;

View File

@ -156,8 +156,6 @@ enum ThunderScopeHWStatus thunderscopehw_configure_channels(struct ThunderScopeH
switch (num_channels_on) {
case 0:
return THUNDERSCOPEHW_STATUS_NO_CHANNELS;
case 1:
on_channels[1] = on_channels[2] = on_channels[3] = on_channels[0];
clkdiv = 0;
@ -200,6 +198,8 @@ enum ThunderScopeHWStatus thunderscopehw_configure_channels(struct ThunderScopeH
#else
usleep(5000);
#endif
/* No channels, leave data mover off. */
if (num_channels_on == 0) return THUNDERSCOPEHW_STATUS_OK;
return thunderscopehw_set_datamover_reg(ts);
}