mirror of
https://codeberg.org/mclemens/ubitxv6.git
synced 2024-11-04 19:47:16 -05:00
15 lines
530 B
C
15 lines
530 B
C
|
#pragma once
|
||
|
|
||
|
#include "button.h"
|
||
|
#include "menu.h"
|
||
|
|
||
|
MenuReturn_e runNpQlShared(const ButtonPress_e tuner_button,
|
||
|
const ButtonPress_e touch_button,
|
||
|
const Point touch_point,
|
||
|
const int16_t knob,
|
||
|
int16_t *const menuSelectedItemRaw,
|
||
|
const Button *const *const menu_buttons,
|
||
|
const uint8_t menu_num_buttons,
|
||
|
ButtonPress_e *const selection_mode);
|
||
|
|