Skip to content

Commit

Permalink
remove printf
Browse files Browse the repository at this point in the history
  • Loading branch information
vampirefrog committed Nov 16, 2024
1 parent 64fcca0 commit 007bdd8
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion midi_timer_driver.c
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
#include "midi_timer_driver.h"

static void midi_timer_driver_set_opm_tempo(struct timer_driver *driver, int opm_tempo) {
printf("midi_timer_driver_set_opm_tempo opm_tempo=%d\n", opm_tempo);

}

int midi_timer_driver_init(struct midi_timer_driver *driver) {
timer_driver_init(&driver->timer_driver);
driver->ticks_per_quarter_note = 48;
Expand Down

0 comments on commit 007bdd8

Please sign in to comment.