forked from espressif/esp-idf
Merge branch 'contrib/github_pr_14310' into 'master'
fix(gptimer): remove incorrect param from example (GitHub PR) Closes IDFGH-13403 See merge request espressif/esp-idf!32664
This commit is contained in:
@@ -258,7 +258,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_register_event_callbacks(gptimer, &cbs, queue));
|
||||||
ESP_ERROR_CHECK(gptimer_enable(gptimer));
|
ESP_ERROR_CHECK(gptimer_enable(gptimer));
|
||||||
ESP_ERROR_CHECK(gptimer_start(gptimer, &alarm_config));
|
ESP_ERROR_CHECK(gptimer_start(gptimer));
|
||||||
|
|
||||||
|
|
||||||
.. only:: SOC_TIMER_SUPPORT_ETM
|
.. only:: SOC_TIMER_SUPPORT_ETM
|
||||||
|
@@ -258,7 +258,7 @@
|
|||||||
};
|
};
|
||||||
ESP_ERROR_CHECK(gptimer_register_event_callbacks(gptimer, &cbs, queue));
|
ESP_ERROR_CHECK(gptimer_register_event_callbacks(gptimer, &cbs, queue));
|
||||||
ESP_ERROR_CHECK(gptimer_enable(gptimer));
|
ESP_ERROR_CHECK(gptimer_enable(gptimer));
|
||||||
ESP_ERROR_CHECK(gptimer_start(gptimer, &alarm_config));
|
ESP_ERROR_CHECK(gptimer_start(gptimer));
|
||||||
|
|
||||||
|
|
||||||
.. only:: SOC_TIMER_SUPPORT_ETM
|
.. only:: SOC_TIMER_SUPPORT_ETM
|
||||||
|
Reference in New Issue
Block a user