summaryrefslogtreecommitdiff
path: root/examples/device
diff options
context:
space:
mode:
authorhathach <[email protected]>2019-07-03 00:52:25 +0700
committerhathach <[email protected]>2019-07-03 00:52:25 +0700
commit1a0e02fa1b004e68a00e5fbfbc4ea854c9036875 (patch)
tree831f2ffe419bb8de2ce32818b71626bca6b1e052 /examples/device
parent62d3b916919c33fba001ff046b97e38200feb2df (diff)
tested midi example
Diffstat (limited to 'examples/device')
-rw-r--r--examples/device/cdc_msc_hid/src/main.c2
-rw-r--r--examples/device/hid_generic_inout/src/main.c2
-rw-r--r--examples/device/midi/src/main.c54
-rw-r--r--examples/device/msc_dual_lun/src/main.c2
4 files changed, 56 insertions, 4 deletions
diff --git a/examples/device/cdc_msc_hid/src/main.c b/examples/device/cdc_msc_hid/src/main.c
index 8ebdddd80..771638ac4 100644
--- a/examples/device/cdc_msc_hid/src/main.c
+++ b/examples/device/cdc_msc_hid/src/main.c
@@ -263,7 +263,7 @@ void led_blinking_task(void)
static uint32_t start_ms = 0;
static bool led_state = false;
- // Blink every 1000 ms
+ // Blink every interval ms
if ( board_millis() - start_ms < blink_interval_ms) return; // not enough time
start_ms += blink_interval_ms;
diff --git a/examples/device/hid_generic_inout/src/main.c b/examples/device/hid_generic_inout/src/main.c
index bbc61a797..77d6cf7b5 100644
--- a/examples/device/hid_generic_inout/src/main.c
+++ b/examples/device/hid_generic_inout/src/main.c
@@ -154,7 +154,7 @@ void led_blinking_task(void)
static uint32_t start_ms = 0;
static bool led_state = false;
- // Blink every 1000 ms
+ // Blink every interval ms
if ( board_millis() - start_ms < blink_interval_ms) return; // not enough time
start_ms += blink_interval_ms;
diff --git a/examples/device/midi/src/main.c b/examples/device/midi/src/main.c
index 60500df93..0cb9b522d 100644
--- a/examples/device/midi/src/main.c
+++ b/examples/device/midi/src/main.c
@@ -30,6 +30,12 @@
#include "bsp/board.h"
#include "tusb.h"
+/* This MIDI example send sequence of note (on/off) repeatedly. To test on PC, you need to install
+ * synth software and midi connection management software. On
+ * - Linux (Ubuntu) : install qsynth, qjackctl. Then connect TinyUSB output port to FLUID Synth input port
+ *
+ */
+
//--------------------------------------------------------------------+
// MACRO CONSTANT TYPEDEF PROTYPES
//--------------------------------------------------------------------+
@@ -48,6 +54,7 @@ enum {
static uint32_t blink_interval_ms = BLINK_NOT_MOUNTED;
void led_blinking_task(void);
+void midi_task(void);
/*------------- MAIN -------------*/
int main(void)
@@ -62,6 +69,8 @@ int main(void)
tud_task();
led_blinking_task();
+
+ midi_task();
}
return 0;
@@ -99,6 +108,49 @@ void tud_resume_cb(void)
}
//--------------------------------------------------------------------+
+// MIDI Task
+//--------------------------------------------------------------------+
+
+// Variable that holds the current position in the sequence.
+uint32_t note_pos = 0;
+
+// Store example melody as an array of note values
+uint8_t note_sequence[] =
+{
+ 74,78,81,86,90,93,98,102,57,61,66,69,73,78,81,85,88,92,97,100,97,92,88,85,81,78,
+ 74,69,66,62,57,62,66,69,74,78,81,86,90,93,97,102,97,93,90,85,81,78,73,68,64,61,
+ 56,61,64,68,74,78,81,86,90,93,98,102
+};
+
+void midi_task(void)
+{
+ static uint32_t start_ms = 0;
+
+ // send note every 1000 ms
+ if (board_millis() - start_ms < 286) return; // not enough time
+ start_ms += 286;
+
+ // Previous positions in the note sequence.
+ int previous = note_pos - 1;
+
+ // If we currently are at position 0, set the
+ // previous position to the last note in the sequence.
+ if (previous < 0) previous = sizeof(note_sequence) - 1;
+
+ // Send Note On for current position at full velocity (127) on channel 1.
+ tudi_midi_write24(0, 0x90, note_sequence[note_pos], 127);
+
+ // Send Note Off for previous note.
+ tudi_midi_write24(0, 0x80, note_sequence[previous], 0);
+
+ // Increment position
+ note_pos++;
+
+ // If we are at the end of the sequence, start over.
+ if (note_pos >= sizeof(note_sequence)) note_pos = 0;
+}
+
+//--------------------------------------------------------------------+
// BLINKING TASK
//--------------------------------------------------------------------+
void led_blinking_task(void)
@@ -106,7 +158,7 @@ void led_blinking_task(void)
static uint32_t start_ms = 0;
static bool led_state = false;
- // Blink every 1000 ms
+ // Blink every interval ms
if ( board_millis() - start_ms < blink_interval_ms) return; // not enough time
start_ms += blink_interval_ms;
diff --git a/examples/device/msc_dual_lun/src/main.c b/examples/device/msc_dual_lun/src/main.c
index 60500df93..060f20644 100644
--- a/examples/device/msc_dual_lun/src/main.c
+++ b/examples/device/msc_dual_lun/src/main.c
@@ -106,7 +106,7 @@ void led_blinking_task(void)
static uint32_t start_ms = 0;
static bool led_state = false;
- // Blink every 1000 ms
+ // Blink every interval ms
if ( board_millis() - start_ms < blink_interval_ms) return; // not enough time
start_ms += blink_interval_ms;