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/device/cdc_msc_hid/src | |
| parent | 6564580c3d9319b02a7a58958b75672e82478162 (diff) | |
rename board_led_control to board_led_write
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 } |
