mirror of
https://github.com/ttrftech/NanoVNA.git
synced 2025-12-06 03:31:59 +01:00
view: show marker frequency
This commit is contained in:
parent
a534a89c89
commit
39c40a1f43
72
plot.c
72
plot.c
|
|
@ -1577,6 +1577,28 @@ cell_draw_marker_info(int m, int n, int w, int h)
|
||||||
cell_drawstring_5x7(w, h, buf, xpos, ypos, config.trace_color[t]);
|
cell_drawstring_5x7(w, h, buf, xpos, ypos, config.trace_color[t]);
|
||||||
j++;
|
j++;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// draw marker delta
|
||||||
|
if (!uistat.marker_delta && previous_marker >= 0 && active_marker != previous_marker && markers[previous_marker].enabled) {
|
||||||
|
int idx0 = markers[previous_marker].index;
|
||||||
|
int xpos = 192;
|
||||||
|
int ypos = 1 + (j/2)*7;
|
||||||
|
xpos -= m * CELLWIDTH -CELLOFFSETX;
|
||||||
|
ypos -= n * CELLHEIGHT;
|
||||||
|
chsnprintf(buf, sizeof buf, "\004%d:", previous_marker+1);
|
||||||
|
cell_drawstring_5x7(w, h, buf, xpos, ypos, 0xffff);
|
||||||
|
xpos += 19;
|
||||||
|
if ((domain_mode & DOMAIN_MODE) == DOMAIN_FREQ) {
|
||||||
|
frequency_string(buf, sizeof buf, frequencies[idx] - frequencies[idx0]);
|
||||||
|
} else {
|
||||||
|
//chsnprintf(buf, sizeof buf, "%d ns %.1f m", (uint16_t)(time_of_index(idx) * 1e9 - time_of_index(idx0) * 1e9),
|
||||||
|
// distance_of_index(idx) - distance_of_index(idx0));
|
||||||
|
int n = string_value_with_prefix(buf, sizeof buf, time_of_index(idx) - time_of_index(idx0), 's');
|
||||||
|
buf[n++] = ' ';
|
||||||
|
string_value_with_prefix(&buf[n], sizeof buf - n, distance_of_index(idx) - distance_of_index(idx0), 'm');
|
||||||
|
}
|
||||||
|
cell_drawstring_5x7(w, h, buf, xpos, ypos, 0xffff);
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
for (t = 0; t < TRACES_MAX; t++) {
|
for (t = 0; t < TRACES_MAX; t++) {
|
||||||
if (!trace[t].enabled)
|
if (!trace[t].enabled)
|
||||||
|
|
@ -1597,23 +1619,6 @@ cell_draw_marker_info(int m, int n, int w, int h)
|
||||||
cell_drawstring_5x7(w, h, buf, xpos, ypos, config.trace_color[t]);
|
cell_drawstring_5x7(w, h, buf, xpos, ypos, config.trace_color[t]);
|
||||||
j++;
|
j++;
|
||||||
}
|
}
|
||||||
}
|
|
||||||
if (electrical_delay != 0) {
|
|
||||||
// draw electrical delay
|
|
||||||
int xpos = 21;
|
|
||||||
int ypos = 1 + ((j+1)/2)*7;
|
|
||||||
xpos -= m * CELLWIDTH -CELLOFFSETX;
|
|
||||||
ypos -= n * CELLHEIGHT;
|
|
||||||
chsnprintf(buf, sizeof buf, "Edelay");
|
|
||||||
cell_drawstring_5x7(w, h, buf, xpos, ypos, 0xffff);
|
|
||||||
xpos += 7 * 5;
|
|
||||||
int n = string_value_with_prefix(buf, sizeof buf, electrical_delay * 1e-12, 's');
|
|
||||||
cell_drawstring_5x7(w, h, buf, xpos, ypos, 0xffff);
|
|
||||||
xpos += n * 5 + 5;
|
|
||||||
float light_speed_ps = 299792458e-12; //(m/ps)
|
|
||||||
string_value_with_prefix(buf, sizeof buf, electrical_delay * light_speed_ps * velocity_factor / 100.0, 'm');
|
|
||||||
cell_drawstring_5x7(w, h, buf, xpos, ypos, 0xffff);
|
|
||||||
}
|
|
||||||
|
|
||||||
// draw marker frequency
|
// draw marker frequency
|
||||||
int xpos = 192;
|
int xpos = 192;
|
||||||
|
|
@ -1633,25 +1638,22 @@ cell_draw_marker_info(int m, int n, int w, int h)
|
||||||
string_value_with_prefix(&buf[n], sizeof buf-n, distance_of_index(idx), 'm');
|
string_value_with_prefix(&buf[n], sizeof buf-n, distance_of_index(idx), 'm');
|
||||||
}
|
}
|
||||||
cell_drawstring_5x7(w, h, buf, xpos, ypos, 0xffff);
|
cell_drawstring_5x7(w, h, buf, xpos, ypos, 0xffff);
|
||||||
|
|
||||||
// draw marker delta
|
|
||||||
if (previous_marker >= 0 && active_marker != previous_marker && markers[previous_marker].enabled) {
|
|
||||||
int idx0 = markers[previous_marker].index;
|
|
||||||
xpos = 192;
|
|
||||||
xpos -= m * CELLWIDTH -CELLOFFSETX;
|
|
||||||
ypos += 7;
|
|
||||||
chsnprintf(buf, sizeof buf, "\004%d:", previous_marker+1);
|
|
||||||
cell_drawstring_5x7(w, h, buf, xpos, ypos, 0xffff);
|
|
||||||
xpos += 19;
|
|
||||||
if ((domain_mode & DOMAIN_MODE) == DOMAIN_FREQ) {
|
|
||||||
frequency_string(buf, sizeof buf, frequencies[idx] - frequencies[idx0]);
|
|
||||||
} else {
|
|
||||||
//chsnprintf(buf, sizeof buf, "%d ns %.1f m", (uint16_t)(time_of_index(idx) * 1e9 - time_of_index(idx0) * 1e9),
|
|
||||||
// distance_of_index(idx) - distance_of_index(idx0));
|
|
||||||
int n = string_value_with_prefix(buf, sizeof buf, time_of_index(idx) - time_of_index(idx0), 's');
|
|
||||||
buf[n++] = ' ';
|
|
||||||
string_value_with_prefix(&buf[n], sizeof buf - n, distance_of_index(idx) - distance_of_index(idx0), 'm');
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (electrical_delay != 0) {
|
||||||
|
// draw electrical delay
|
||||||
|
int xpos = 21;
|
||||||
|
int ypos = 1 + ((j+1)/2)*7;
|
||||||
|
xpos -= m * CELLWIDTH -CELLOFFSETX;
|
||||||
|
ypos -= n * CELLHEIGHT;
|
||||||
|
chsnprintf(buf, sizeof buf, "Edelay");
|
||||||
|
cell_drawstring_5x7(w, h, buf, xpos, ypos, 0xffff);
|
||||||
|
xpos += 7 * 5;
|
||||||
|
int n = string_value_with_prefix(buf, sizeof buf, electrical_delay * 1e-12, 's');
|
||||||
|
cell_drawstring_5x7(w, h, buf, xpos, ypos, 0xffff);
|
||||||
|
xpos += n * 5 + 5;
|
||||||
|
float light_speed_ps = 299792458e-12; //(m/ps)
|
||||||
|
string_value_with_prefix(buf, sizeof buf, electrical_delay * light_speed_ps * velocity_factor / 100.0, 'm');
|
||||||
cell_drawstring_5x7(w, h, buf, xpos, ypos, 0xffff);
|
cell_drawstring_5x7(w, h, buf, xpos, ypos, 0xffff);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue