User Activity

To use cpp, I create the project in cpp and then I modify the name of main.c in main.cpp. This work pretty well, but when I try to update the configuration by ioc file, the code stay the same. It seems like I have to change to main.c before update to...
typedef struct{ uint8_t data[10]; uint8_t time[10]; uint8_t description[10];} FileString;FileString Datalogger_FileString;Datalogger_FileString.data[0]=0; //ERROR: expected '=', ',', ';', 'asm' or '__attribute__' before '.' tokenWhat do I should do t...
When I'm using TOUCHGFX and FATFS together, I can create/write/read a file in my SD only if I do it before "MX_TouchGFX_Init();"f_mount(&SDFatFS, (TCHAR const*)SDPath, 0);f_open(&SDFile, "DIO.TXT", FA_CREATE_ALWAYS | FA_WRITE); //with TGFX this one g...