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

Debugging routines

Debugging routines

This module implements debug routines which enable debug traces to be sent to a logger Note this module is only compiled if HTTP_CORE_ENABLE_DEBUG is defined in HttpConfig.h. More...

Functions

void HttpDebugStr (uint8_t *pString)
 Send string debug trace to logger.
void HttpAssert (int condition)
 Assert that a certain condition is true.

Detailed Description

This module implements debug routines which enable debug traces to be sent to a logger Note this module is only compiled if HTTP_CORE_ENABLE_DEBUG is defined in HttpConfig.h.


Function Documentation

void HttpAssert ( int  condition )

Assert that a certain condition is true.

Parameters:
conditionA value that must be nonzero

Definition at line 34 of file HttpDebug.cpp.

void HttpDebugStr ( uint8_t *  pString )

Send string debug trace to logger.

Parameters:
pStringThe string to send

Definition at line 27 of file HttpDebug.cpp.