We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 76cc14c + 775d019 commit eb6da32Copy full SHA for eb6da32
1 file changed
main.c
@@ -74,10 +74,19 @@ bool __not_in_flash_func(timer_step)() {
74
75
bpm_timer_counter++;
76
77
+#ifdef INCLUDE_ECTOCORE
78
+ bool do_splice_trigger = (bpm_timer_counter % (banks[sel_bank_cur]
79
+ ->sample[sel_sample_cur]
80
+ .snd[FILEZERO]
81
+ ->splice_trigger *
82
+ ectocore_clock_out_divisions[ectocore_clock_selected_division] /
83
+ 8)) == 0;
84
+#else
85
bool do_splice_trigger = (bpm_timer_counter % (banks[sel_bank_cur]
86
->sample[sel_sample_cur]
87
.snd[FILEZERO]
88
->splice_trigger)) == 0;
89
+#endif
90
91
// ectocore clocking
92
#ifdef INCLUDE_ECTOCORE
0 commit comments