KM3NeT CLB  2.0
KM3NeT CLB v2 Embedded Software
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
show.h
1 /*
2  * KM3NeT CLB v2 Firmware
3  * ----------------------
4  *
5  * Copyright 2013 National Institute for Subatomic Physics Nikhef
6  *
7  * All Rights Reserved.
8  *
9  *
10  * File : show.h
11  * Created : 17 jul. 2013
12  * Author : Vincent van Beveren
13  */
14 
15 
16 #ifndef SHOW_H_
17 #define SHOW_H_
18 
19 #include <stdint.h>
20 
21 /**
22  * Create a neat dump of binary data.
23  *
24  * @param title The title to put before the dump
25  * @param data The data contents
26  * @param len The lenght of the data.
27  */
28 void showHex8(const char * const title, uint8_t * data, int len);
29 
30 #endif /* SHOW_H_ */