summaryrefslogtreecommitdiff
path: root/examples/device/cdc_msc_hid/src
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/cdc_msc_hid/src
parent62d3b916919c33fba001ff046b97e38200feb2df (diff)
tested midi example
Diffstat (limited to 'examples/device/cdc_msc_hid/src')
-rw-r--r--examples/device/cdc_msc_hid/src/main.c2
1 files changed, 1 insertions, 1 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;