CBUSConfig config; // CBUS config object compiles ok.
But...
CBUSConfig CBUSconf; // CBUSconf object fails to compile.
The object 'config' is hard coded into CBUS.cpp as extern CBUSConfig config;
Reason this is an Issue:
My app also has a 'config' object and want to make it clear which 'config' is which by changing both names.
Workaround:
I'll change my app to use another object name and leave config name as is. Not ideal.
Dave Harris