1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-12-27 23:41:18 +01:00

cpu/esp32: fix return type of system_get_time_64

This commit is contained in:
Gunar Schorcht 2025-03-02 12:17:07 +01:00
parent 01f830745c
commit 1aa8534055

View File

@ -27,7 +27,7 @@ extern "C" {
#endif
/** Time since boot in us (64bit version) */
int64_t system_get_time_64 (void);
uint64_t system_get_time_64 (void);
/** initialize system watchdog timer and start it */
void system_wdt_init (void);