mirror of
https://github.com/ttrftech/NanoVNA.git
synced 2025-12-06 03:31:59 +01:00
add plotting and smith grid
This commit is contained in:
parent
602df8af7a
commit
92161068db
192
ili9431.c
192
ili9431.c
|
|
@ -211,8 +211,8 @@ void ili9341_pixel(int x, int y, int color)
|
|||
|
||||
void ili9341_fill(int x, int y, int w, int h, int color)
|
||||
{
|
||||
uint8_t xx[4] = { x >> 8, x, (x+w) >> 8, (x+w) };
|
||||
uint8_t yy[4] = { y >> 8, y, (y+h) >> 8, (y+h) };
|
||||
uint8_t xx[4] = { x >> 8, x, (x+w-1) >> 8, (x+w-1) };
|
||||
uint8_t yy[4] = { y >> 8, y, (y+h-1) >> 8, (y+h-1) };
|
||||
int len = w * h;
|
||||
send_command(0x2A, 4, xx);
|
||||
send_command(0x2B, 4, yy);
|
||||
|
|
@ -221,6 +221,19 @@ void ili9341_fill(int x, int y, int w, int h, int color)
|
|||
ssp_senddata16(color);
|
||||
}
|
||||
|
||||
void ili9341_bulk(int x, int y, int w, int h)
|
||||
{
|
||||
uint8_t xx[4] = { x >> 8, x, (x+w-1) >> 8, (x+w-1) };
|
||||
uint8_t yy[4] = { y >> 8, y, (y+h-1) >> 8, (y+h-1) };
|
||||
uint16_t *buf = spi_buffer;
|
||||
int len = w * h;
|
||||
send_command(0x2A, 4, xx);
|
||||
send_command(0x2B, 4, yy);
|
||||
send_command(0x2C, 0, NULL);
|
||||
while (len-- > 0)
|
||||
ssp_senddata16(*buf++);
|
||||
}
|
||||
|
||||
typedef struct {
|
||||
uint16_t width;
|
||||
uint16_t height;
|
||||
|
|
@ -264,6 +277,29 @@ ili9341_drawfont(uint8_t ch, const font_t *font, int x, int y, uint16_t fg, uint
|
|||
ssp_senddata16(*buf++);
|
||||
}
|
||||
|
||||
|
||||
void
|
||||
draw_grid(int n, int m, int w, int h, int x, int y, uint16_t fg, uint16_t bg)
|
||||
{
|
||||
int ww = w*n+1;
|
||||
int hh = h*m+1;
|
||||
int xx = x;
|
||||
int yy = y;
|
||||
int i;
|
||||
|
||||
ili9341_fill(x, y, ww, hh, bg);
|
||||
|
||||
for (i = 0; i <= n; i++) {
|
||||
ili9341_fill(xx, y, 1, hh, fg);
|
||||
xx += w;
|
||||
}
|
||||
for (i = 0; i <= m; i++) {
|
||||
ili9341_fill(x, yy, ww, 1, fg);
|
||||
yy += h;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
const uint16_t colormap[] = {
|
||||
RGB565(255,0,0), RGB565(0,255,0), RGB565(0,0,255),
|
||||
RGB565(255,255,0), RGB565(0,255,255), RGB565(255,0,255)
|
||||
|
|
@ -301,9 +337,161 @@ ili9341_test(int mode)
|
|||
ili9341_drawfont(i, &NF20x24, i*20, 120, colormap[i%6], 0x0000);
|
||||
break;
|
||||
#endif
|
||||
case 4:
|
||||
draw_grid(10, 8, 29, 29, 15, 0, 0xffff, 0);
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
float prev_value;
|
||||
int prev_freq;
|
||||
int prev_x;
|
||||
|
||||
int32_t fstart = 0;
|
||||
int32_t fend = 300000000;
|
||||
|
||||
#define OFFSETX 15
|
||||
#define OFFSETY 0
|
||||
#define WIDTH 291
|
||||
#define HEIGHT 233
|
||||
|
||||
|
||||
int
|
||||
circle_grid(int x, int y, int r)
|
||||
{
|
||||
int d = x*x + y*y - r*r;
|
||||
if (d <= -r)
|
||||
return 1;
|
||||
if (d >= r)
|
||||
return -1;
|
||||
return 0;
|
||||
}
|
||||
|
||||
int
|
||||
smith_grid(int x, int y)
|
||||
{
|
||||
int d = circle_grid(x-146, y-116, 116);
|
||||
int c = 0x7bef;
|
||||
if (d < 0)
|
||||
return 0;
|
||||
else if (d == 0)
|
||||
return c;
|
||||
x -= 146+116;
|
||||
y -= 116;
|
||||
|
||||
if (circle_grid(x, y+58, 58) == 0)
|
||||
return c;
|
||||
if (circle_grid(x, y-58, 58) == 0)
|
||||
return c;
|
||||
d = circle_grid(x+29, y, 29);
|
||||
if (d > 0) return 0;
|
||||
if (d == 0) return c;
|
||||
if (circle_grid(x, y+116, 116) == 0)
|
||||
return c;
|
||||
if (circle_grid(x, y-116, 116) == 0)
|
||||
return c;
|
||||
d = circle_grid(x+58, y, 58);
|
||||
if (d > 0) return 0;
|
||||
if (d == 0) return c;
|
||||
if (circle_grid(x, y+232, 232) == 0)
|
||||
return c;
|
||||
if (circle_grid(x, y-232, 232) == 0)
|
||||
return c;
|
||||
if (circle_grid(x+87, y, 87) == 0)
|
||||
return c;
|
||||
return 0;
|
||||
}
|
||||
|
||||
int
|
||||
rectangular_grid(int x, int y)
|
||||
{
|
||||
int c = 0x7bef;
|
||||
if (((x * 6) % (WIDTH-1)) < 6)
|
||||
return c;
|
||||
if ((y % 29) == 0)
|
||||
return c;
|
||||
return 0;
|
||||
}
|
||||
|
||||
int
|
||||
set_strut_grid(int x)
|
||||
{
|
||||
uint16_t *buf = spi_buffer;
|
||||
int y;
|
||||
|
||||
for (y = 0; y < HEIGHT; y++) {
|
||||
int c = 0;
|
||||
c |= smith_grid(x, y);
|
||||
c |= rectangular_grid(x, y);
|
||||
*buf++ = c;
|
||||
}
|
||||
return y;
|
||||
}
|
||||
|
||||
void
|
||||
draw_on_strut(int v0, int v1, int color)
|
||||
{
|
||||
int v, d;
|
||||
if (v0 < 0) v0 = 0;
|
||||
if (v1 < 0) v1 = 0;
|
||||
if (v0 >= HEIGHT) v0 = HEIGHT-1;
|
||||
if (v1 >= HEIGHT) v1 = HEIGHT-1;
|
||||
if (v0 == v1) {
|
||||
v = v0; d = 1;
|
||||
} else if (v0 < v1) {
|
||||
v = v0; d = v1 - v0;
|
||||
} else {
|
||||
v = v1; d = v0 - v1;
|
||||
}
|
||||
while (d-- > 0)
|
||||
spi_buffer[v++] = color;
|
||||
}
|
||||
|
||||
void sweep_plot(int32_t freq, int first)
|
||||
{
|
||||
float value = 10 - log10f(gamma_real*gamma_real + gamma_imag*gamma_imag);
|
||||
int curr_x = ((float)WIDTH * (freq - fstart) / (fend - fstart));
|
||||
value *= 29;
|
||||
|
||||
if (first) {
|
||||
prev_freq = freq;
|
||||
prev_value = value;
|
||||
prev_x = 0;
|
||||
while (prev_x < curr_x) {
|
||||
int len = set_strut_grid(prev_x);
|
||||
ili9341_bulk(OFFSETX + prev_x, OFFSETY, 1, len);
|
||||
prev_x++;
|
||||
}
|
||||
} else {
|
||||
int w = curr_x - prev_x;
|
||||
float d = (value - prev_value) / w;
|
||||
|
||||
while (prev_x < curr_x) {
|
||||
int len = set_strut_grid(prev_x);
|
||||
int v0 = prev_value;
|
||||
int v1;
|
||||
prev_value += d;
|
||||
v1 = prev_value;
|
||||
draw_on_strut(v0, v1, RGB565(0,255,255));
|
||||
ili9341_bulk(OFFSETX + prev_x, OFFSETY, 1, len);
|
||||
prev_x++;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
void sweep_tail()
|
||||
{
|
||||
while (prev_x < WIDTH) {
|
||||
int len = set_strut_grid(prev_x);
|
||||
ili9341_bulk(OFFSETX + prev_x, OFFSETY, 1, len);
|
||||
prev_x++;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
#if 0
|
||||
void
|
||||
spi_dma_setup()
|
||||
|
|
|
|||
50
main.c
50
main.c
|
|
@ -37,7 +37,9 @@ int I2CRead(int addr, uint8_t d0)
|
|||
return buf[0];
|
||||
}
|
||||
|
||||
static THD_WORKING_AREA(waThread1, 128);
|
||||
void scan_lcd(void);
|
||||
|
||||
static THD_WORKING_AREA(waThread1, 512);
|
||||
static THD_FUNCTION(Thread1, arg)
|
||||
{
|
||||
(void)arg;
|
||||
|
|
@ -47,12 +49,16 @@ static THD_FUNCTION(Thread1, arg)
|
|||
palSetPadMode(GPIOC, 13, PAL_MODE_OUTPUT_PUSHPULL);
|
||||
while (1)
|
||||
{
|
||||
#if 0
|
||||
systime_t time = 500;
|
||||
if (serusbcfg.usbp->state != USB_ACTIVE)
|
||||
palClearPad(GPIOC, 13);
|
||||
chThdSleepMilliseconds(time);
|
||||
palSetPad(GPIOC, 13);
|
||||
chThdSleepMilliseconds(time);
|
||||
#else
|
||||
scan_lcd();
|
||||
#endif
|
||||
}
|
||||
}
|
||||
|
||||
|
|
@ -303,6 +309,45 @@ static void cmd_scan(BaseSequentialStream *chp, int argc, char *argv[])
|
|||
}
|
||||
}
|
||||
|
||||
void scan_lcd(void)
|
||||
{
|
||||
int i;
|
||||
int32_t freq, cur_freq, step;
|
||||
int delay;
|
||||
int first = TRUE;
|
||||
|
||||
freq = freq_start;
|
||||
step = (freq_stop - freq_start) / (sweep_points-1);
|
||||
delay = set_frequency(freq);
|
||||
delay += 2;
|
||||
for (i = 0; i < sweep_points; i++) {
|
||||
cur_freq = freq;
|
||||
freq = freq + step;
|
||||
wait_count = delay;
|
||||
while (wait_count)
|
||||
;
|
||||
palClearPad(GPIOC, GPIOC_LED);
|
||||
//dsp_disabled = TRUE;
|
||||
__disable_irq();
|
||||
delay = set_frequency(freq);
|
||||
calclate_gamma();
|
||||
//dsp_disabled = FALSE;
|
||||
__enable_irq();
|
||||
//chprintf(chp, "%d %d %d\r\n", cur_freq, gamma_real, gamma_imag);
|
||||
sweep_plot(cur_freq, first);
|
||||
first = FALSE;
|
||||
palSetPad(GPIOC, GPIOC_LED);
|
||||
}
|
||||
sweep_tail();
|
||||
}
|
||||
|
||||
static void cmd_scan_lcd(BaseSequentialStream *chp, int argc, char *argv[])
|
||||
{
|
||||
(void)argc;
|
||||
(void)argv;
|
||||
scan_lcd();
|
||||
}
|
||||
|
||||
static void cmd_sweep(BaseSequentialStream *chp, int argc, char *argv[])
|
||||
{
|
||||
if (argc == 0) {
|
||||
|
|
@ -456,6 +501,7 @@ static const ShellCommand commands[] =
|
|||
{ "scan", cmd_scan },
|
||||
{ "sweep", cmd_sweep },
|
||||
{ "test", cmd_test },
|
||||
{ "plot", cmd_scan_lcd },
|
||||
{ NULL, NULL }
|
||||
};
|
||||
|
||||
|
|
@ -523,7 +569,7 @@ int main(void)
|
|||
|
||||
chThdCreateStatic(waThread1, sizeof(waThread1), NORMALPRIO, Thread1, NULL);
|
||||
|
||||
set_frequency(10000000);
|
||||
//set_frequency(10000000);
|
||||
|
||||
while (1)
|
||||
{
|
||||
|
|
|
|||
|
|
@ -48,6 +48,9 @@ int si5351_set_frequency_with_offset(int freq, int offset, uint8_t drive_strengt
|
|||
void ili9341_init(void);
|
||||
void ili9341_test(int mode);
|
||||
|
||||
void sweep_plot(int32_t freq, int first);
|
||||
void sweep_tail();
|
||||
|
||||
extern const uint16_t x5x7_bits [];
|
||||
extern const uint32_t numfont20x24[][24];
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue