How to get #define configuration in my MPLAB-X project for all ".c" files ?
Hello,
I would like to know if it is possible for all ".c" files to create un text file which enumerate all active #define.
For exemple, my project files :
// file foo1.h
#define FUNC1
#define FUNC2
// file foo2.h
#include "foo1.h"
#ifdef FUNC1
#define FUNC2_1
#else
#define FUNC2_1
#endif
// file foo.c
#include "foo2.h"
I would like :
// file foo.txt
#define FUNC1
#define FUNC2
#define FUNC2_1
It is to check #define delaration for ".c" files of my project.
post edited by Emcy - 2020/11/25 07:55:47