mirror of
https://github.com/esp8266/Arduino.git
synced 2025-04-22 21:23:07 +03:00
* Attribute `__real_system_restart_local()` as `(noreturn)` * As well as `abort()`. * Aggragate two decls into `coredecls.h`.
42 lines
910 B
C++
42 lines
910 B
C++
|
|
#ifndef __COREDECLS_H
|
|
#define __COREDECLS_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
// TODO: put declarations here, get rid of -Wno-implicit-function-declaration
|
|
|
|
#include <stddef.h>
|
|
#include <stdint.h>
|
|
#include <cont.h> // g_pcont declaration
|
|
|
|
extern bool timeshift64_is_set;
|
|
extern uint32_t sntp_real_timestamp;
|
|
|
|
bool can_yield();
|
|
void esp_yield();
|
|
void esp_schedule();
|
|
void tune_timeshift64 (uint64_t now_us);
|
|
void disable_extra4k_at_link_time (void) __attribute__((noinline));
|
|
bool sntp_set_timezone_in_seconds(int32_t timezone);
|
|
void __real_system_restart_local() __attribute__((noreturn));
|
|
|
|
uint32_t sqrt32 (uint32_t n);
|
|
uint32_t crc32 (const void* data, size_t length, uint32_t crc = 0xffffffff);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
|
|
#include <functional>
|
|
|
|
using TrivialCB = std::function<void()>;
|
|
|
|
void settimeofday_cb (TrivialCB&& cb);
|
|
void settimeofday_cb (const TrivialCB& cb);
|
|
|
|
#endif
|
|
|
|
#endif // __COREDECLS_H
|