Changes between Version 3 and Version 4 of Docs/Prog/Manual/ApplicationLibraries/lib825ev/Debug/DEBUG_SHOWDATA
- Timestamp:
- 03/12/25 08:14:29 (3 weeks ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Docs/Prog/Manual/ApplicationLibraries/lib825ev/Debug/DEBUG_SHOWDATA
v3 v4 2 2 Display binary data in readable (ASCII and hexadecimal) on the serial or telnet console 3 3 4 {{{ 4 {{{#!c++ 5 5 DEBUG_SHOWDATA(const char *msg, const uint8* data, int len) 6 6 }}} … … 22 22 == Examples == 23 23 24 {{{ 24 {{{#!c++ 25 25 uint8 req[] = { 0x02, 'W', 0x03 }; 26 26 DEBUG_SHOWDATA("Request", req, sizeof(req));