Merge pull request #2513 from lemondrops/bugfix/midiin_sbpromcv
Add an option to control SBMIDI input receiving on SB Pro MCV
This commit is contained in:
@@ -2749,6 +2749,17 @@ static const device_config_t sb_pro_config[] = {
|
|||||||
{ .name = "", .description = "", .type = CONFIG_END }
|
{ .name = "", .description = "", .type = CONFIG_END }
|
||||||
};
|
};
|
||||||
|
|
||||||
|
static const device_config_t sb_pro_mcv_config[] = {
|
||||||
|
{
|
||||||
|
.name = "receive_input",
|
||||||
|
.description = "Receive input (SB MIDI)",
|
||||||
|
.type = CONFIG_BINARY,
|
||||||
|
.default_string = "",
|
||||||
|
.default_int = 1
|
||||||
|
},
|
||||||
|
{ .name = "", .description = "", .type = CONFIG_END }
|
||||||
|
};
|
||||||
|
|
||||||
static const device_config_t sb_16_config[] = {
|
static const device_config_t sb_16_config[] = {
|
||||||
{
|
{
|
||||||
.name = "base",
|
.name = "base",
|
||||||
@@ -3523,7 +3534,7 @@ const device_t sb_pro_mcv_device = {
|
|||||||
{ .available = NULL },
|
{ .available = NULL },
|
||||||
.speed_changed = sb_speed_changed,
|
.speed_changed = sb_speed_changed,
|
||||||
.force_redraw = NULL,
|
.force_redraw = NULL,
|
||||||
.config = NULL
|
.config = sb_pro_mcv_config
|
||||||
};
|
};
|
||||||
|
|
||||||
const device_t sb_pro_compat_device = {
|
const device_t sb_pro_compat_device = {
|
||||||
|
Reference in New Issue
Block a user