This commit is contained in:
zogodo
2019-12-04 22:25:24 +08:00
parent 0736f46102
commit 011b7e8ec7
7 changed files with 6 additions and 6 deletions

View File

@@ -25,7 +25,7 @@
NAME := App_TC1
$(NAME)_SOURCES := main.c\
cJSON/cJSON.c\
c_json/c_json.c\
ota_server/ota_server.c\
user_wifi.c\
user_gpio.c\

View File

@@ -30,7 +30,7 @@
#include <float.h>
#include <limits.h>
#include <ctype.h>
#include "cJSON.h"
#include "c_json.h"
#include "mico.h"
static const char *ep;

View File

@@ -4,7 +4,7 @@
#include "main.h"
#include "user_gpio.h"
#include "cJSON/cJSON.h"
#include "c_json/c_json.h"
#include "ota_server/user_ota.h"
#include "user_mqtt_client.h"
#include "user_udp.h"

View File

@@ -27,7 +27,7 @@
#include "user_function.h"
#include "user_gpio.h"
#include "user_mqtt_client.h"
#include "cJSON/cJSON.h"
#include "c_json/c_json.h"
//#define MQTT_CLIENT_SSL_ENABLE // ssl

View File

@@ -4,7 +4,7 @@
#include "user_gpio.h"
#include "sntp.h"
#include "time_server/user_sntp.h"
#include "cJSON/cJSON.h"
#include "c_json/c_json.h"
#include "mqtt_server/user_mqtt_client.h"
#include "mqtt_server/user_function.h"

View File

@@ -4,7 +4,7 @@
#include "user_gpio.h"
#include "mqtt_server/user_mqtt_client.h"
#include "user_udp.h"
#include "cJSON/cJSON.h"
#include "c_json/c_json.h"
mico_gpio_t relay[Relay_NUM] = { Relay_0, Relay_1, Relay_2, Relay_3, Relay_4, Relay_5 };