* apps/system/i2c/i2c_hexdump.c
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership. The
* ASF licenses this file to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance with the
* License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations
* under the License.
*
****************************************************************************/
* Included Files
****************************************************************************/
#include <stdio.h>
#include <inttypes.h>
#include <ctype.h>
#include "i2ctool.h"
* Private Functions
****************************************************************************/
* Name: hexdump_line
****************************************************************************/
static int hexdump_line(FAR FILE *ostream, FAR void *addr, int len)
{
int i;
FAR uint8_t *p;
if (len <= 0)
{
return 0;
}
if (len > 16)
{
len = 16;
}
for (i = 0, p = addr; i < len; ++i, ++p)
{
if (i % 8 == 0)
{
fputc(' ', ostream);
}
fprintf(ostream, "%02x ", *p);
}
if (i <= 8)
{
fputc(' ', ostream);
}
while (i++ < 16)
{
fputs(" ", ostream);
}
fputs(" |", ostream);
for (i = 0, p = addr; i < len; ++i, ++p)
{
fputc(isprint(*p) ? *p : '.', ostream);
}
while (i++ < 16)
{
fputc(' ', ostream);
}
fputs("|\n", ostream);
return len;
}
* Public Functions
****************************************************************************/
void i2ctool_hexdump(FAR FILE *outstream, FAR void *addr, int len)
{
int nbytes;
FAR uint8_t *p = addr;
while (len > 0)
{
fprintf(outstream, "%08tx ", p - (uint8_t *)addr);
nbytes = hexdump_line(outstream, p, len);
len -= nbytes;
p += nbytes;
}
}