refactor(structure): move layered firmware modules from main to components
This commit is contained in:
12
components/platform/include/wifi_manager.h
Normal file
12
components/platform/include/wifi_manager.h
Normal file
@@ -0,0 +1,12 @@
|
||||
#pragma once
|
||||
|
||||
#include <stdbool.h>
|
||||
#include <stddef.h>
|
||||
#include "esp_err.h"
|
||||
|
||||
esp_err_t wifi_manager_start(void);
|
||||
esp_err_t wifi_manager_stop(void);
|
||||
|
||||
bool wifi_manager_is_ready(void);
|
||||
|
||||
void wifi_manager_get_ip(char *buf, size_t buf_len);
|
||||
Reference in New Issue
Block a user