TI's CC3100 websocket camera demo with Arducam mini ov5642 and freertos. Should work with other M3's. Work in progress test demo.

Dependencies:   mbed

Committer:
dflet
Date:
Fri Sep 11 15:38:33 2015 +0000
Revision:
1:e448e81c416f
Parent:
0:400d8e75a8d0
Removed some debud.

Who changed what in which revision?

UserRevisionLine numberNew contents of line
dflet 0:400d8e75a8d0 1 /*****************************************************************************
dflet 0:400d8e75a8d0 2 *
dflet 0:400d8e75a8d0 3 * websocketapp.h
dflet 0:400d8e75a8d0 4 * Copyright (C) 2011 Texas Instruments Incorporated - http://www.ti.com/
dflet 0:400d8e75a8d0 5 *
dflet 0:400d8e75a8d0 6 * Redistribution and use in source and binary forms, with or without
dflet 0:400d8e75a8d0 7 * modification, are permitted provided that the following conditions
dflet 0:400d8e75a8d0 8 * are met:
dflet 0:400d8e75a8d0 9 *
dflet 0:400d8e75a8d0 10 * Redistributions of source code must retain the above copyright
dflet 0:400d8e75a8d0 11 * notice, this list of conditions and the following disclaimer.
dflet 0:400d8e75a8d0 12 *
dflet 0:400d8e75a8d0 13 * Redistributions in binary form must reproduce the above copyright
dflet 0:400d8e75a8d0 14 * notice, this list of conditions and the following disclaimer in the
dflet 0:400d8e75a8d0 15 * documentation and/or other materials provided with the
dflet 0:400d8e75a8d0 16 * distribution.
dflet 0:400d8e75a8d0 17 *
dflet 0:400d8e75a8d0 18 * Neither the name of Texas Instruments Incorporated nor the names of
dflet 0:400d8e75a8d0 19 * its contributors may be used to endorse or promote products derived
dflet 0:400d8e75a8d0 20 * from this software without specific prior written permission.
dflet 0:400d8e75a8d0 21 *
dflet 0:400d8e75a8d0 22 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
dflet 0:400d8e75a8d0 23 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
dflet 0:400d8e75a8d0 24 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
dflet 0:400d8e75a8d0 25 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
dflet 0:400d8e75a8d0 26 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
dflet 0:400d8e75a8d0 27 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
dflet 0:400d8e75a8d0 28 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
dflet 0:400d8e75a8d0 29 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
dflet 0:400d8e75a8d0 30 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
dflet 0:400d8e75a8d0 31 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
dflet 0:400d8e75a8d0 32 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
dflet 0:400d8e75a8d0 33 *
dflet 0:400d8e75a8d0 34 *****************************************************************************/
dflet 0:400d8e75a8d0 35 #ifndef WEBSOCKETAPP_H_
dflet 0:400d8e75a8d0 36 #define WEBSOCKETAPP_H_
dflet 0:400d8e75a8d0 37
dflet 0:400d8e75a8d0 38 #include "WebSockHandler.h"
dflet 0:400d8e75a8d0 39
dflet 0:400d8e75a8d0 40
dflet 0:400d8e75a8d0 41
dflet 0:400d8e75a8d0 42
dflet 0:400d8e75a8d0 43 #endif /* WEBSOCKETAPP_H_ */
dflet 0:400d8e75a8d0 44