You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
/*
|
|
* debug.h
|
|
*
|
|
* Created on: 15.12.2017
|
|
* Author: steffen
|
|
*/
|
|
|
|
#ifndef DEBUG_H_
|
|
#define DEBUG_H_
|
|
|
|
|
|
void debug_mem (char *c, int len);
|
|
char *int2hex (int val, char *buf, int len);
|
|
|
|
|
|
#endif /* DEBUG_H_ */
|