summaryrefslogtreecommitdiff
path: root/examples/host
diff options
context:
space:
mode:
authorhathach <[email protected]>2019-04-08 03:39:51 -0700
committerGitHub <[email protected]>2019-04-08 03:39:51 -0700
commit074898099da6bfd8784019d97c64712f73b779b0 (patch)
treeab6882fc57d5d63c1695d9cb582406b9d4b339c4 /examples/host
parentad7589c748948b42fe6c33db70adfe3bcb095154 (diff)
parent64bed848d07b8de37cc94c9b64be3e92fa12739d (diff)
Merge pull request #54 from hathach/develop
fix #53
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 86ddb55e1..4f31c6d3f 100644
--- a/examples/host/cdc_msc_hid/src/main.c
+++ b/examples/host/cdc_msc_hid/src/main.c
@@ -173,7 +173,7 @@ void led_blinking_task(void)
if ( board_millis() < start_ms + interval_ms) return; // not enough time
start_ms += interval_ms;
- board_led_control(led_state);
+ board_led_write(led_state);
led_state = 1 - led_state; // toggle
}