Hi.
I use a DPlib from controlSUITE. I'm in my main.c file declared next:
#pragma DATA_SECTION(CNTL_2P2Z_CoefStruct1, "CNTL_2P2Z_Coef");
#pragma DATA_SECTION(CNTL_2P2Z_CoefStruct2, "CNTL_2P2Z_Coef");
struct CNTL_2P2Z_CoefStruct CNTL_2P2Z_CoefStruct1;
struct CNTL_2P2Z_CoefStruct CNTL_2P2Z_CoefStruct2;
and next, I want to have access to declared variable in another some xxx.c file. How I most do correct declared it in another file?
the same problem and with
SineAnalyzer sine_mainsV = SineAnalyzer_DEFAULTS;
I need access to sine_mainsV in another xxx.c file. How can I do it?