mirror of
https://github.com/ttrftech/NanoVNA.git
synced 2026-04-05 14:35:50 +00:00
add numeric input (WIP)
This commit is contained in:
parent
5d1934d85f
commit
7228ebd5fa
4 changed files with 296 additions and 32 deletions
13
plot.c
13
plot.c
|
|
@ -1193,8 +1193,17 @@ request_to_draw_cells_behind_menu(void)
|
|||
{
|
||||
int n, m;
|
||||
for (m = 7; m <= 9; m++)
|
||||
for (n = 0; n < (area_height+CELLHEIGHT-1) / CELLHEIGHT; n++)
|
||||
//draw_cell(m, n);
|
||||
for (n = 0; n < 8; n++)
|
||||
mark_map(m, n);
|
||||
redraw_requested = TRUE;
|
||||
}
|
||||
|
||||
void
|
||||
request_to_draw_cells_behind_numeric_input(void)
|
||||
{
|
||||
int n, m;
|
||||
for (m = 0; m <= 9; m++)
|
||||
for (n = 6; n < 8; n++)
|
||||
mark_map(m, n);
|
||||
redraw_requested = TRUE;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue