TI's CC3100 websocket camera demo with Arducam mini ov5642 and freertos. Should work with other M3's. Work in progress test demo.
utils/cli_uart.h
- Committer:
- dflet
- Date:
- 2015-09-11
- Revision:
- 1:e448e81c416f
- Parent:
- 0:400d8e75a8d0
File content as of revision 1:e448e81c416f:
#ifndef cli_uart_H
#define cli_uart_H
#define RTOS_MUTEX_CREATE(x) osi_LockObjCreate(x)
#define RTOS_MUTEX_ACQUIRE(x) osi_LockObjLock(x, (OsiTime_t) OSI_WAIT_FOREVER)
#define RTOS_MUTEX_RELEASE(x) osi_LockObjUnlock(x)
#define RTOS_MUTEX_DELETE(x) osi_LockObjDelete(x)
int32_t Uart_Write(unsigned char *inBuff);
void CLI_Configure(void);
extern void Message(const char *format);
extern int Report(const char *format, ...);
#endif