This commit is contained in:
Tom-on64 2026-04-24 18:35:13 +02:00
parent cbed3f24a1
commit 57c3d2bc80
2 changed files with 8 additions and 1 deletions

View File

@ -16,4 +16,10 @@
#define SAMPLE_RATE 44100.0f #define SAMPLE_RATE 44100.0f
#define BPM_MIN 30.0f
#define BPM_MAX 300.0f
#define VCO_MIN 40.0f
#define VCO_MAX 3200.0f
#define otherwise else #define otherwise else

View File

@ -1,7 +1,8 @@
#pragma once #pragma once
#include <stdint.h> #include <stdint.h>
#include "vco.h" #include <stdbool.h>
#include "vco.hh"
typedef struct { typedef struct {
union { union {