Page 1 of 1

Color code in custom build

Posted: 24 Oct 2022, 14:28
by chromo23
@TD-er where do i enable color code in custom builds?

Re: Color code in custom build

Posted: 24 Oct 2022, 14:40
by chromo23
Ahh, i think i found it
I uncommented it in "define_plugin_sets.h" section "#ifdef LIMIT_BUILD_SIZE".
Is that the right way to do it?

Re: Color code in custom build

Posted: 24 Oct 2022, 15:28
by TD-er
Nope, for custom builds you should only need to change either Custom.h or tools/pio/pre_custo_esp82xx.py (or the esp32 variant)


So either in Custom.h:

Code: Select all

#define FEATURE_RULES_EASY_COLOR_CODE 1
or in the Python file:

Code: Select all

"-DFEATURE_RULES_EASY_COLOR_CODE=1",

Re: Color code in custom build

Posted: 24 Oct 2022, 15:29
by chromo23
Ok, thanks!!!