Select one of the symbols to view example projects that use it.
 
Outline
#include <stdint.h>
esp_tls_get_platform_time();
Files
loading (2/5)...
SourceVuESP-IDF Framework and ExamplesESP-IDFcomponents/esp-tls/private_include/esp_tls_platform_port.h
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
/* * SPDX-FileCopyrightText: 2024 Espressif Systems (Shanghai) CO LTD * * SPDX-License-Identifier: Apache-2.0 *//* ... */ // This file contains APIs which have different implementation across different targets e.g., Linux, ESP. #pragma once #include <stdint.h> /* @brief * * Behaviour * Linux: * Returns the system time (64 bit) using gettimeofday in microseconds. This shall get changed if someone changes the system time using settimeofday * ESP targets: * Returns the time (64 bit) since boot obtained using esp_timer_get_time() in microseconds * @return * time uint64_t bit time value * *//* ... */ uint64_t esp_tls_get_platform_time(void);
Details
Show:
from
Types: Columns:
This file uses the notable symbols shown below. Click anywhere in the file to view more details.