diff options
| author | hathach <[email protected]> | 2019-04-08 03:39:51 -0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2019-04-08 03:39:51 -0700 |
| commit | 074898099da6bfd8784019d97c64712f73b779b0 (patch) | |
| tree | ab6882fc57d5d63c1695d9cb582406b9d4b339c4 /examples/host | |
| parent | ad7589c748948b42fe6c33db70adfe3bcb095154 (diff) | |
| parent | 64bed848d07b8de37cc94c9b64be3e92fa12739d (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.c | 2 |
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 } |
