2 Commits
1.3.0 ... 1.4.0

Author SHA1 Message Date
520521e07c Use ecmc 9.5.0 2024-05-01 09:39:13 +02:00
1cd2c32b2d Fix destruct error 2024-05-01 09:36:43 +02:00
2 changed files with 6 additions and 5 deletions

View File

@@ -16,7 +16,7 @@ OPT_CXXFLAGS_YES = -O3
# dependencies
ECmasterECMC_VERSION = v1.1.0
ecmc_VERSION = 9.4.0
ecmc_VERSION = 9.5.0
BASE_DIR = .
SRC_DIR = $(BASE_DIR)/src

View File

@@ -53,10 +53,11 @@ int daqConstruct(char *configStr)
**/
void daqDestruct(void)
{
deleteAllDAQs();
if(lastConfStr){
free(lastConfStr);
}
// Segfaults here during destruction?! need to check..
//deleteAllDAQs();
//if(lastConfStr){
// free(lastConfStr);
//}
}
/** Optional function.