14 lines
293 B
C
14 lines
293 B
C
#pragma once
|
|
|
|
#include <stdbool.h>
|
|
#include <stddef.h>
|
|
|
|
#include "esp_err.h"
|
|
|
|
esp_err_t system_runtime_start(void);
|
|
esp_err_t system_runtime_shutdown(void);
|
|
esp_err_t system_runtime_bootstrap(void);
|
|
|
|
bool system_runtime_wifi_ready(void);
|
|
void system_runtime_get_ip(char *buf, size_t buf_len);
|