/**
* \file DebugPrint.h
* \brief Print raw data formatted in hex.
* \author Roman Pasechnik (r.pasechnik@samsung.com)
* \version 0.1
* \date Created Apr 14, 2014
* \par In Samsung Ukraine R&D Center (SURC) under a contract between
* \par LLC "Samsung Electronics Ukraine Company" (Kiev, Ukraine) and
* \par "Samsung Elecrtronics Co", Ltd (Seoul, Republic of Korea)
* \par Copyright: (c) Samsung Electronics Co, Ltd 2012. All rights reserved.
**/

#ifndef __DEBUGPRINT_H_INCLUDED__
#define __DEBUGPRINT_H_INCLUDED__

#include <stdint.h>

void debugPrintRawData(const uint8_t *data, int len);

#endif