English
Language : 

ZAURA Datasheet, PDF (83/99 Pages) –
ZAURA RF Wireless Library
Programmer’s Reference Manual
71
ZAURA_RF_ShellHexDump
Description This function displays Len bytes of RAM (in hexadecimal format)
starting at the memory location referenced by hData on the console.
Syntax
void ZAURA_RF_ShellHexDump(HANDLE hData, UINT8 Len)
Parameters
hData
A pointer to the bytes to be displayed (in hexadecimal format).
Len
The number of bytes that are valid in hData.
Returns None.
Example
UINT8 Data[4] = {0x11,0xBB,0xCC,0xDD};
/*
* Display the Data array on the console in Hex
*/
ZAURA_RF_ShellHexDump( Data, 4 );
RM006003-1011
ZAURA_RF_ShellHexDump