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 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