mbed OS5
Fork of UIPEthernet by
Diff: utility/uip_debug.h
- Revision:
- 3:5b17e4656dd0
- Child:
- 4:d774541a34da
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/utility/uip_debug.h Sat Dec 20 11:10:40 2014 +0000 @@ -0,0 +1,14 @@ +#ifndef UIP_DEBUG_H + #define UIP_DEBUG_H +extern "C" +{ + #include "uip.h" +} +class UIPDebug +{ +public: + static void uip_debug_printconns(void); + static bool uip_debug_printcon(struct uip_conn* lhs, struct uip_conn* rhs); + static void uip_debug_printbytes(const uint8_t* data, uint8_t len); +}; +#endif