How to combine two lines in an include statement?
I tried the code below - and also without ##- but both times, the preprocessor output only part BASE_DIR.
#define BASE_DIR "../Source/micropython/"
#include BASE_DIR##"py/parse.h"
#include BASE_DIR ## "py/gc.h"
#include BASE_DIR ## "py/mpstate.h"
source
share