98 lines
1.3 KiB
C
Raw Normal View History

2025-10-10 16:07:00 +08:00
#ifndef _DEMO_CASE_H_
#define _DEMO_CASE_H_
#if HELLOWORLD_DEMO
#include "helloworld.h"
#endif
#if OS_THREAD_DEMO
#include "os_thread.h"
#endif
#if OS_SEM_DEMO
#include "os_sem.h"
#endif
#if OS_QUEUE_DEMO
#include "os_queue.h"
#endif
#if OS_TIMER_DEMO
#include "os_timer.h"
#endif
#if OS_MUTEX_DEMO
#include "os_mutex.h"
#endif
#if WIFI_SCAN_DEMO
#include "wifi_scan.h"
#endif
#if WIFI_SOFTAP_DEMO
#include "wifi_softap.h"
#endif
#if WIFI_DELETE_SOFTAP_DEMO
#include "wifi_delete_softap.h"
#endif
#if WIFI_STATION_DEMO
#include "wifi_station.h"
#endif
#if WIFI_AIRKISS_STATION_DEMO
#include "wifi_Airkiss_station.h"
#endif
#if TCP_CLIENT_DEMO
#include "tcp_client_demo.h"
#endif
#if TCP_SERVER_DEMO
#include "tcp_server_demo.h"
#endif
#if UART_TCP_SERVER_DEMO
#include "uart1_tcp_server_demo.h"
#endif
#if UDP_SERVER_DEMO
#include "udp_server_demo.h"
#endif
#if UDP_CLIENT_DEMO
#include "udp_client_demo.h"
#endif
#if MQTT_CLIENT_DEMO
#include "mqtt_test.h"
#endif
#if CJSON_TEST_DEMO
#include "cJsontest.h"
#endif
#if LIGHT_SERVER_APPLICATION
#include "light_server_app.h"
#endif
#if AP_STA_DEMO
#include "ap_sta_demo.h"
#endif
#if EASY_FLASH_DEMO
#include "param_manage.h"
#endif
#if LIGHT_CLIENT_APP_DEMO
#include "light_client_app_demo.h"
#endif
#if WIFI_STATION_PS_DEMO
#include "wifi_station_ps_demo.h"
#endif
#endif /*_DEMO_CASE_H_*/