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.
11 lines
331 B
11 lines
331 B
#include "../lib/debug_config.h" |
|
#include "../src/etcp_connections.h" |
|
|
|
int main() { |
|
debug_config_init(); |
|
debug_set_level(DEBUG_LEVEL_DEBUG); |
|
debug_enable_category(DEBUG_CATEGORY_ETCP); |
|
printf("Debug config: level=%d, categories=0x%x\n", |
|
g_debug_config.level, g_debug_config.categories); |
|
return 0; |
|
}
|
|
|