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

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers cli_uart.h Source File

cli_uart.h

00001 
00002 
00003 #ifndef cli_uart_H
00004 #define cli_uart_H
00005 
00006 
00007 #define RTOS_MUTEX_CREATE(x)        osi_LockObjCreate(x)
00008 #define RTOS_MUTEX_ACQUIRE(x)       osi_LockObjLock(x, (OsiTime_t) OSI_WAIT_FOREVER)
00009 #define RTOS_MUTEX_RELEASE(x)       osi_LockObjUnlock(x)
00010 #define RTOS_MUTEX_DELETE(x)        osi_LockObjDelete(x)
00011 
00012 int32_t Uart_Write(unsigned char *inBuff);
00013 
00014 void CLI_Configure(void);
00015 
00016 extern void Message(const char *format);
00017 
00018 extern int Report(const char *format, ...);
00019 
00020 
00021 #endif
00022