TI's CC3100 websocket camera demo with Arducam mini ov5642 and freertos. Should work with other M3's. Work in progress test demo.
http/server/strlib.h@1:e448e81c416f, 2015-09-11 (annotated)
- 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?
User | Revision | Line number | New contents of line |
---|---|---|---|
dflet | 0:400d8e75a8d0 | 1 | //***************************************************************************** |
dflet | 0:400d8e75a8d0 | 2 | // Copyright (C) 2014 Texas Instruments Incorporated |
dflet | 0:400d8e75a8d0 | 3 | // |
dflet | 0:400d8e75a8d0 | 4 | // All rights reserved. Property of Texas Instruments Incorporated. |
dflet | 0:400d8e75a8d0 | 5 | // Restricted rights to use, duplicate or disclose this code are |
dflet | 0:400d8e75a8d0 | 6 | // granted through contract. |
dflet | 0:400d8e75a8d0 | 7 | // The program may not be used without the written permission of |
dflet | 0:400d8e75a8d0 | 8 | // Texas Instruments Incorporated or against the terms and conditions |
dflet | 0:400d8e75a8d0 | 9 | // stipulated in the agreement under which this program has been supplied, |
dflet | 0:400d8e75a8d0 | 10 | // and under no circumstances can it be used with non-TI connectivity device. |
dflet | 0:400d8e75a8d0 | 11 | // |
dflet | 0:400d8e75a8d0 | 12 | //***************************************************************************** |
dflet | 0:400d8e75a8d0 | 13 | |
dflet | 0:400d8e75a8d0 | 14 | #ifndef __STRLIB__ |
dflet | 0:400d8e75a8d0 | 15 | #define __STRLIB__ |
dflet | 0:400d8e75a8d0 | 16 | |
dflet | 0:400d8e75a8d0 | 17 | #ifdef __cplusplus |
dflet | 0:400d8e75a8d0 | 18 | extern "C" { |
dflet | 0:400d8e75a8d0 | 19 | #endif |
dflet | 0:400d8e75a8d0 | 20 | |
dflet | 0:400d8e75a8d0 | 21 | char *itoa(int n, char *s, int b); |
dflet | 0:400d8e75a8d0 | 22 | char *strrev(char *str); |
dflet | 0:400d8e75a8d0 | 23 | void WordToBytes(void *pBuff, void const*pvalue, unsigned int NumBytes); |
dflet | 0:400d8e75a8d0 | 24 | int String_utoa(int uNum, char *pString); |
dflet | 0:400d8e75a8d0 | 25 | int iptostring(unsigned char *ip, char *ipstring); |
dflet | 0:400d8e75a8d0 | 26 | |
dflet | 0:400d8e75a8d0 | 27 | #ifdef __cplusplus |
dflet | 0:400d8e75a8d0 | 28 | } |
dflet | 0:400d8e75a8d0 | 29 | #endif /* __cplusplus */ |
dflet | 0:400d8e75a8d0 | 30 | #endif |
dflet | 0:400d8e75a8d0 | 31 | |
dflet | 0:400d8e75a8d0 | 32 | |
dflet | 0:400d8e75a8d0 | 33 | |
dflet | 0:400d8e75a8d0 | 34 |