Port of TI's CC3100 Websock camera demo. Using FreeRTOS, mbedTLS, also parts of Arducam for cams ov5642 and 0v2640. Can also use MT9D111. Work in progress. Be warned some parts maybe a bit flacky. This is for Seeed Arch max only, for an M3, see the demo for CM3 using the 0v5642 aducam mini.

Dependencies:   mbed

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers HttpConfig.h Source File

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