summaryrefslogtreecommitdiff
path: root/examples/host
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/host
parent62d3b916919c33fba001ff046b97e38200feb2df (diff)
tested midi example
Diffstat (limited to 'examples/host')
-rw-r--r--examples/host/cdc_msc_hid/src/main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/host/cdc_msc_hid/src/main.c b/examples/host/cdc_msc_hid/src/main.c
index 61f101127..8625bbcd0 100644
--- a/examples/host/cdc_msc_hid/src/main.c
+++ b/examples/host/cdc_msc_hid/src/main.c
@@ -169,7 +169,7 @@ void led_blinking_task(void)
static bool led_state = false;
- // Blink every 1000 ms
+ // Blink every interval ms
if ( board_millis() - start_ms < interval_ms) return; // not enough time
start_ms += interval_ms;