Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
bwhitman committed Jun 8, 2024
1 parent c67855c commit 5019463
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions tulip/linux/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@
#include "display.h"
#include "alles.h"
#include "midi.h"
#include "sequencer.h"


// Command line options, with their defaults
Expand Down Expand Up @@ -893,6 +894,10 @@ int main(int argc, char **argv) {
pthread_create(&mp_thread_id, NULL, main_, NULL);
int c = 0;

sequencer_init();
pthread_t sequencer_thread_id;
pthread_create(&sequencer_thread_id, NULL, run_sequencer, NULL);

delay_ms(100);
// Schedule a "turning on" sound
bleep();
Expand Down

0 comments on commit 5019463

Please sign in to comment.