diff options
| author | hathach <[email protected]> | 2019-04-02 18:16:04 +0700 |
|---|---|---|
| committer | hathach <[email protected]> | 2019-04-02 18:16:04 +0700 |
| commit | 5f3ab2afe1820d629750c4e23e86ef91d6d3313c (patch) | |
| tree | 141cc9b32d64d110a010719f961fac208bf77542 /examples/host | |
| parent | 6564580c3d9319b02a7a58958b75672e82478162 (diff) | |
rename board_led_control to board_led_write
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 } |
