Changes between Version 3 and Version 4 of Docs/Prog/Manual/ApplicationLibraries/lib825ev/Debug/DEBUG_SHOWDATA


Ignore:
Timestamp:
03/12/25 08:14:29 (3 weeks ago)
Author:
Don Wilson
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Docs/Prog/Manual/ApplicationLibraries/lib825ev/Debug/DEBUG_SHOWDATA

    v3 v4  
    22Display binary data in readable (ASCII and hexadecimal) on the serial or telnet console
    33
    4 {{{
     4{{{#!c++
    55DEBUG_SHOWDATA(const char *msg, const uint8* data, int len)
    66}}}
     
    2222== Examples ==
    2323
    24 {{{
     24{{{#!c++
    2525uint8 req[] = { 0x02, 'W', 0x03 };
    2626DEBUG_SHOWDATA("Request", req, sizeof(req));