Compare commits

...

2 Commits

Author SHA1 Message Date
Tom-on 3ce93a08bf Merge branch 'master' of https://git.pupes.org/PoliEcho/sint-gauntlet 2026-04-24 14:59:55 +02:00
Tom-on 9d87c0748b Added Oscillator 2026-04-24 14:59:52 +02:00
+9 -4
View File
@@ -11,9 +11,6 @@
#include "state.h"
#include "daisysp.h"
daisysp::Oscillator osc;
daisysp::Svf filter;
state_t state;
void init_all() {
@@ -41,7 +38,15 @@ void init_all() {
}
}
__attribute__((noreturn)) int main() {
daisysp::Oscillator osc;
__attribute__((noreturn))
int main() {
init_all();
osc.Init(SAMPLE_RATE);
while (1) {
osc.SetFreq(state.vco_freq * 1760);
}
}