├── .gitignore ├── .vscode ├── .cortex-debug.registers.state.json ├── STM32H750x.svd ├── c_cpp_properties.json ├── launch.json └── tasks.json ├── Daisy Seed Synth Instructions.txt ├── Daisy Seed Synth Parameters.txt ├── Makefile ├── README.txt ├── main.cpp ├── main.h ├── vasynth.cpp └── vasynth.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nettech15/Daisy-Seed-7-Voice-VA-Synthesizer/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/.cortex-debug.registers.state.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /.vscode/STM32H750x.svd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nettech15/Daisy-Seed-7-Voice-VA-Synthesizer/HEAD/.vscode/STM32H750x.svd -------------------------------------------------------------------------------- /.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nettech15/Daisy-Seed-7-Voice-VA-Synthesizer/HEAD/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nettech15/Daisy-Seed-7-Voice-VA-Synthesizer/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nettech15/Daisy-Seed-7-Voice-VA-Synthesizer/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /Daisy Seed Synth Instructions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nettech15/Daisy-Seed-7-Voice-VA-Synthesizer/HEAD/Daisy Seed Synth Instructions.txt -------------------------------------------------------------------------------- /Daisy Seed Synth Parameters.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nettech15/Daisy-Seed-7-Voice-VA-Synthesizer/HEAD/Daisy Seed Synth Parameters.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nettech15/Daisy-Seed-7-Voice-VA-Synthesizer/HEAD/Makefile -------------------------------------------------------------------------------- /README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nettech15/Daisy-Seed-7-Voice-VA-Synthesizer/HEAD/README.txt -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nettech15/Daisy-Seed-7-Voice-VA-Synthesizer/HEAD/main.cpp -------------------------------------------------------------------------------- /main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nettech15/Daisy-Seed-7-Voice-VA-Synthesizer/HEAD/main.h -------------------------------------------------------------------------------- /vasynth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nettech15/Daisy-Seed-7-Voice-VA-Synthesizer/HEAD/vasynth.cpp -------------------------------------------------------------------------------- /vasynth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nettech15/Daisy-Seed-7-Voice-VA-Synthesizer/HEAD/vasynth.h --------------------------------------------------------------------------------