mirror of https://github.com/jeelabs/esp-link.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
845 B
44 lines
845 B
#ifndef _USER_CONFIG_H_
|
|
#define _USER_CONFIG_H_
|
|
#include <c_types.h>
|
|
#ifdef __WIN32__
|
|
#include <_mingw.h>
|
|
#endif
|
|
|
|
#undef SHOW_HEAP_USE
|
|
#define DEBUGIP
|
|
#define SDK_DBG
|
|
|
|
#define CMD_DBG
|
|
#undef ESPFS_DBG
|
|
#undef CGI_DBG
|
|
#define CGIFLASH_DBG
|
|
#define CGIMQTT_DBG
|
|
#define CGIPINS_DBG
|
|
#define CGIWIFI_DBG
|
|
#define CONFIG_DBG
|
|
#define LOG_DBG
|
|
#define STATUS_DBG
|
|
#define HTTPD_DBG
|
|
#define MQTT_DBG
|
|
#define MQTTCMD_DBG
|
|
#define MQTTCLIENT_DBG
|
|
#undef PKTBUF_DBG
|
|
#define REST_DBG
|
|
#define RESTCMD_DBG
|
|
#define SERBR_DBG
|
|
#define SERLED_DBG
|
|
#define SLIP_DBG
|
|
#define UART_DBG
|
|
#define MDNS_DBG
|
|
#define OPTIBOOT_DBG
|
|
#undef SYSLOG_DBG
|
|
#define CGISERVICES_DBG
|
|
|
|
// If defined, the default hostname for DHCP will include the chip ID to make it unique
|
|
#undef CHIP_IN_HOSTNAME
|
|
|
|
extern char* esp_link_version;
|
|
extern uint8_t UTILS_StrToIP(const char* str, void *ip);
|
|
|
|
#endif
|
|
|