wip: oscillator class

This commit is contained in:
2023-08-06 23:33:51 +04:00
parent bcb75a65f9
commit 850dedb319
5 changed files with 172 additions and 0 deletions

7
inc/OscillatorType.h Normal file
View File

@@ -0,0 +1,7 @@
#pragma once
typedef enum {
Sine,
Triangle,
Saw,
Square
} OscillatorType;