mirror of
https://github.com/espressif/esp-idf.git
synced 2025-08-06 22:24:33 +02:00
esp_system, esp_timer: fix time function description
This commit is contained in:
@@ -61,11 +61,11 @@ void esp_reset_reason_set_hint(esp_reset_reason_t hint);
|
|||||||
*/
|
*/
|
||||||
esp_reset_reason_t esp_reset_reason_get_hint(void);
|
esp_reset_reason_t esp_reset_reason_get_hint(void);
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief Get the time in microseconds since startup
|
* @brief Get the time in microseconds since startup
|
||||||
*
|
*
|
||||||
* @returns time since startup in microseconds
|
* @returns time since g_startup_time; definition should be fixed by system time provider
|
||||||
|
* no matter the underlying timer used.
|
||||||
*/
|
*/
|
||||||
int64_t esp_system_get_time(void);
|
int64_t esp_system_get_time(void);
|
||||||
|
|
||||||
|
@@ -184,8 +184,7 @@ esp_err_t esp_timer_delete(esp_timer_handle_t timer);
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief Get time in microseconds since boot
|
* @brief Get time in microseconds since boot
|
||||||
* @return number of microseconds since esp_timer_init was called (this normally
|
* @return number of microseconds since underlying timer has been started
|
||||||
* happens early during application startup).
|
|
||||||
*/
|
*/
|
||||||
int64_t esp_timer_get_time(void);
|
int64_t esp_timer_get_time(void);
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user