tested midi example

This commit is contained in:
hathach
2019-07-03 00:52:25 +07:00
parent 62d3b91691
commit 1a0e02fa1b
7 changed files with 75 additions and 7 deletions

View File

@@ -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;