EmbeddedUnit
config.h
Go to the documentation of this file.
1 
34 #ifndef __CONFIG_H__
35 #define __CONFIG_H__
36 
37 /* #define NO_STDIO_PRINTF*/
38  #ifdef NO_STDIO_PRINTF
39  extern void stdimpl_print(const char *string);
40  #else
41  #include<stdio.h>
42  #define stdimpl_print printf
43  #endif
44 
45  #define ASSERT_STRING_BUFFER_MAX 64
46 
47  #define ASSERT_MEMORY_BUFFER_MAX 256
48 
49 #endif/*__CONFIG_H__*/