fx_reverb done

This commit is contained in:
Stefano D'Angelo 2023-06-02 14:13:29 +02:00
parent 78e8b911c7
commit 2d170def71
4 changed files with 19 additions and 15 deletions

View File

@ -1,7 +1,7 @@
ROOT_DIR := $(shell dirname $(realpath $(firstword $(MAKEFILE_LIST))))
TARGET = bw_example_fx_delay
TARGET = bw_example_fx_reverb
C_SOURCES += ${ROOT_DIR}/../src/bw_example_fx_delay.c
C_SOURCES += ${ROOT_DIR}/../src/bw_example_fx_reverb.c
include ${ROOT_DIR}/../../common/daisy-seed/daisy-seed.mk

View File

@ -26,10 +26,14 @@ struct config_pin {
int pin;
};
#define NUM_PINS 1
#define NUM_PINS 5
static struct config_pin config_pins[NUM_PINS] = {
{ 0, 15 }
{ 0, 15 },
{ 1, 16 },
{ 2, 17 },
{ 3, 18 },
{ 4, 19 }
};
#endif

View File

@ -1,6 +1,6 @@
ROOT_DIR := $(shell dirname $(realpath $(firstword $(MAKEFILE_LIST))))
NAME := bw_example_fx_delay
SOURCES = ${SOURCES_COMMON} ${ROOT_DIR}/../src/bw_example_fx_delay.c
NAME := bw_example_fx_reverb
SOURCES = ${SOURCES_COMMON} ${ROOT_DIR}/../src/bw_example_fx_reverb.c
include ${ROOT_DIR}/../../common/vst3/vst3.mk

View File

@ -21,16 +21,16 @@
#ifndef _VST3_CONFIG_H
#define _VST3_CONFIG_H
#define PLUGIN_SUBCATEGORY "Fx|Delay"
#define PLUGIN_SUBCATEGORY "Fx|Reverb"
#define PLUGIN_GUID_1 0x30a47806
#define PLUGIN_GUID_2 0x850f445c
#define PLUGIN_GUID_3 0x9f13660d
#define PLUGIN_GUID_4 0x0e26f2dc
#define PLUGIN_GUID_1 0x24c2034d
#define PLUGIN_GUID_2 0xc34a4553
#define PLUGIN_GUID_3 0xa556f26b
#define PLUGIN_GUID_4 0x07853b68
#define CTRL_GUID_1 0xfd1e3d99
#define CTRL_GUID_2 0xd2cb4d57
#define CTRL_GUID_3 0x82e54aaf
#define CTRL_GUID_4 0x5e1a5bd5
#define CTRL_GUID_1 0x1c2c5513
#define CTRL_GUID_2 0x3b1f40bb
#define CTRL_GUID_3 0x8c5e4588
#define CTRL_GUID_4 0xea7166cd
#endif