mirror of
https://github.com/sle118/squeezelite-esp32.git
synced 2025-12-07 20:17:04 +03:00
Conflicts: .cproject .gitmodules .project .pydevproject .settings/language.settings.xml .settings/org.eclipse.cdt.core.prefs components/cmd_i2c/CMakeLists.txt components/cmd_i2c/cmd_i2ctools.c components/cmd_i2c/component.mk components/cmd_nvs/cmd_nvs.c components/cmd_nvs/component.mk components/cmd_system/cmd_system.c components/cmd_system/component.mk components/config/config.c components/config/config.h components/config/nvs_utilities.c components/display/CMakeLists.txt components/driver_bt/CMakeLists.txt components/driver_bt/component.mk components/raop/raop.c components/services/CMakeLists.txt components/squeezelite-ota/cmd_ota.c components/squeezelite-ota/squeezelite-ota.c components/squeezelite-ota/squeezelite-ota.h components/squeezelite/component.mk components/telnet/CMakeLists.txt components/wifi-manager/CMakeLists.txt components/wifi-manager/dns_server.c components/wifi-manager/http_server.c components/wifi-manager/http_server.h components/wifi-manager/wifi_manager.c components/wifi-manager/wifi_manager.h main/CMakeLists.txt main/console.c main/esp_app_main.c main/platform_esp32.h
47 lines
1.4 KiB
C
47 lines
1.4 KiB
C
#pragma once
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
#include "nvs.h"
|
|
#include "assert.h"
|
|
#include "cJSON.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
#define DECLARE_SET_DEFAULT(t) void config_set_default_## t (const char *key, t value);
|
|
#define DECLARE_GET_NUM(t) esp_err_t config_get_## t (const char *key, t * value);
|
|
#ifndef FREE_RESET
|
|
#define FREE_RESET(p) if(p!=NULL) { free(p); p=NULL; }
|
|
#endif
|
|
|
|
DECLARE_SET_DEFAULT(uint8_t);
|
|
DECLARE_SET_DEFAULT(uint16_t);
|
|
DECLARE_SET_DEFAULT(uint32_t);
|
|
DECLARE_SET_DEFAULT(int8_t);
|
|
DECLARE_SET_DEFAULT(int16_t);
|
|
DECLARE_SET_DEFAULT(int32_t);
|
|
DECLARE_GET_NUM(uint8_t);
|
|
DECLARE_GET_NUM(uint16_t);
|
|
DECLARE_GET_NUM(uint32_t);
|
|
DECLARE_GET_NUM(int8_t);
|
|
DECLARE_GET_NUM(int16_t);
|
|
DECLARE_GET_NUM(int32_t);
|
|
|
|
bool config_has_changes();
|
|
void config_commit_to_nvs();
|
|
void config_start_timer();
|
|
void config_init();
|
|
void * config_alloc_get_default(nvs_type_t type, const char *key, void * default_value, size_t blob_size);
|
|
void config_delete_key(const char *key);
|
|
void config_set_default(nvs_type_t type, const char *key, void * default_value, size_t blob_size);
|
|
void * config_alloc_get(nvs_type_t nvs_type, const char *key) ;
|
|
bool wait_for_commit();
|
|
char * config_alloc_get_json(bool bFormatted);
|
|
esp_err_t config_set_value(nvs_type_t nvs_type, const char *key, const void * value);
|
|
nvs_type_t config_get_item_type(cJSON * entry);
|
|
void * config_safe_alloc_get_entry_value(nvs_type_t nvs_type, cJSON * entry);
|
|
|