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/device/cdc_msc_hid/src | |
| parent | ad7589c748948b42fe6c33db70adfe3bcb095154 (diff) | |
| parent | 64bed848d07b8de37cc94c9b64be3e92fa12739d (diff) | |
Merge pull request #54 from hathach/develop
fix #53
Diffstat (limited to 'examples/device/cdc_msc_hid/src')
| -rw-r--r-- | examples/device/cdc_msc_hid/src/main.c | 2 |
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 12e331af7..78e07910d 100644 --- a/examples/device/cdc_msc_hid/src/main.c +++ b/examples/device/cdc_msc_hid/src/main.c @@ -245,6 +245,6 @@ void led_blinking_task(void) if ( board_millis() < start_ms + blink_interval_ms) return; // not enough time start_ms += blink_interval_ms; - board_led_control(led_state); + board_led_write(led_state); led_state = 1 - led_state; // toggle } |
