I can't compile the program correctly, it gives me the following errors
"
../main/esp-project.c: In function 'FCD_0c101_Ref1__Prv_GetConsole':
../main/esp-project.c:497:25: error: 'FCL_DATA[<unknown>]' is used uninitialized in this function [-Werror=uninitialized]
FCR_RETVAL = FCL_DATA[FCL_BYTE] | (FCL_DATA[FCL_BYTE + 1] << 8);
~~~~~~~~^~~~~~~~~~
../main/esp-project.c:497:47: error: 'FCL_DATA[<unknown>]' is used uninitialized in this function [-Werror=uninitialized]
FCR_RETVAL = FCL_DATA[FCL_BYTE] | (FCL_DATA[FCL_BYTE + 1] << 8);
~~~~~~~~^~~~~~~~~~~~~~
../main/esp-project.c: In function 'FCD_09991_Buff1__Prv_GetConsole':
../main/esp-project.c
^
../main/esp-project.c
^
../main/esp-project.c: In function 'FCD_0c101_Ref1__Prv_PutPropStr':
../main/esp-project.c:247:16: error: 'FCL_RDSTR[<unknown>]' may be used uninitialized in this function [-Werror=maybe-uninitialized]
if (FCL_RDSTR[FCL_RDIDX] == ',')
~~~~~~~~~^~~~~~~~~~~
../main/esp-project.c: In function 'FCD_0c101_Ref1__Prv_GetPropStr':
../main/esp-project.c:410:16: error: 'FCL_RDSTR[<unknown>]' may be used uninitialized in this function [-Werror=maybe-uninitialized]
if (FCL_RDSTR[FCL_RDIDX] == ',')
~~~~~~~~~^~~~~~~~~~~
../main/esp-project.c:429:16: error: 'FCL_RDSTR[<unknown>]' may be used uninitialized in this function [-Werror=maybe-uninitialized]
if (FCL_RDSTR[FCL_RDIDX] == ',')
~~~~~~~~~^~~~~~~~~~~
../main/esp-project.c: In function 'FCD_09991_Buff1__Prv_PutPropStr':
../main/esp-project.c:884:16: error: 'FCL_RDSTR[<unknown>]' may be used uninitialized in this function [-Werror=maybe-uninitialized]
// } else {
~~~~~~~ ^
../main/esp-project.c: In function 'FCD_09991_Buff1__Prv_GetPropStr':
../main/esp-project.c
// } else {
~~~~~~~ ^
../main/esp-project.c
} else {
~~~~ ^
"
instead if I remove the dsp components everything is ok