mirror of
https://github.com/espressif/esp-idf
synced 2025-03-10 09:39:10 -04:00
docs(gptimer): remove incorrect param from example
Fixes call to `gptimer_start` in one of the examples which includes extra second parameter `&alarm_config`, when the function takes only one. Mreges https://github.com/espressif/esp-idf/pull/14310
This commit is contained in:
parent
e488d1945c
commit
500760a918
@ -261,7 +261,7 @@ Alarm value can be updated dynamically inside the ISR handler callback, by chang
|
||||
};
|
||||
ESP_ERROR_CHECK(gptimer_register_event_callbacks(gptimer, &cbs, queue));
|
||||
ESP_ERROR_CHECK(gptimer_enable(gptimer));
|
||||
ESP_ERROR_CHECK(gptimer_start(gptimer, &alarm_config));
|
||||
ESP_ERROR_CHECK(gptimer_start(gptimer));
|
||||
|
||||
|
||||
.. only:: SOC_ETM_SUPPORTED and SOC_TIMER_SUPPORT_ETM
|
||||
|
@ -261,7 +261,7 @@
|
||||
};
|
||||
ESP_ERROR_CHECK(gptimer_register_event_callbacks(gptimer, &cbs, queue));
|
||||
ESP_ERROR_CHECK(gptimer_enable(gptimer));
|
||||
ESP_ERROR_CHECK(gptimer_start(gptimer, &alarm_config));
|
||||
ESP_ERROR_CHECK(gptimer_start(gptimer));
|
||||
|
||||
|
||||
.. only:: SOC_ETM_SUPPORTED and SOC_TIMER_SUPPORT_ETM
|
||||
|
Loading…
x
Reference in New Issue
Block a user