Rev 1919 | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 1919 | Rev 2425 | ||
---|---|---|---|
Line 1... | Line 1... | ||
1 | // $Id: app.c |
1 | // $Id: app.c 2425 2016-11-03 00:44:22Z tk $
|
2 | /*
|
2 | /*
|
3 | * MIOS32 Tutorial #017: A simple Sequencer
|
3 | * MIOS32 Tutorial #017: A simple Sequencer
|
4 | *
|
4 | *
|
5 | * ==========================================================================
|
5 | * ==========================================================================
|
6 | *
|
6 | *
|
Line 69... | Line 69... | ||
69 | 69 | ||
70 | // install MIDI Rx callback function
|
70 | // install MIDI Rx callback function
|
71 | MIOS32_MIDI_DirectRxCallback_Init(NOTIFY_MIDI_Rx); |
71 | MIOS32_MIDI_DirectRxCallback_Init(NOTIFY_MIDI_Rx); |
72 | 72 | ||
73 | // install sequencer task
|
73 | // install sequencer task
|
74 | xTaskCreate(TASK_SEQ, |
74 | xTaskCreate(TASK_SEQ, "SEQ", configMINIMAL_STACK_SIZE, NULL, PRIORITY_TASK_SEQ, NULL); |
75 | }
|
75 | }
|
76 | 76 | ||
77 | 77 | ||
78 | /////////////////////////////////////////////////////////////////////////////
|
78 | /////////////////////////////////////////////////////////////////////////////
|
79 | // This task is running endless in background
|
79 | // This task is running endless in background
|