TI's CC3100 websocket camera demo with Arducam mini ov5642 and freertos. Should work with other M3's. Work in progress test demo.
HttpConfig.h
00001 //***************************************************************************** 00002 // Copyright (C) 2014 Texas Instruments Incorporated 00003 // 00004 // All rights reserved. Property of Texas Instruments Incorporated. 00005 // Restricted rights to use, duplicate or disclose this code are 00006 // granted through contract. 00007 // The program may not be used without the written permission of 00008 // Texas Instruments Incorporated or against the terms and conditions 00009 // stipulated in the agreement under which this program has been supplied, 00010 // and under no circumstances can it be used with non-TI connectivity device. 00011 // 00012 //***************************************************************************** 00013 00014 #ifndef _HTTP_CONFIG_H_ 00015 #define _HTTP_CONFIG_H_ 00016 00017 /** 00018 * @defgroup HttpConfig HTTP Server compile-time configuration options 00019 * This header file contains various compile-time options for the server 00020 * 00021 * @{ 00022 */ 00023 00024 /// Use HttpStatic module for static content 00025 #define HTTP_CORE_ENABLE_STATIC 00026 /// Use HttpDynamic module for dynamic content 00027 #define HTTP_CORE_ENABLE_DYNAMIC 00028 /// Use HttpAuth for HTTP digest-access authentication 00029 //#define HTTP_CORE_ENABLE_AUTH 00030 /// Use HttpDebug module to generate debug traces 00031 #define HTTP_CORE_ENABLE_DEBUG 00032 /// Use WebSocket module for using ws connection 00033 #define HTTP_CORE_ENABLE_WS 00034 00035 00036 /// @} 00037 00038 #endif //_HTTP_CONFIG_H_ 00039
Generated on Wed Jul 13 2022 15:58:45 by
1.7.2