For some of my test where I am using FreeRTOS, I need to set the CM7_CORE_CLK to the maxium frequency value (e.g., CM7_CORE_CLOCK=320MHz). Due to defined constraints the CORE_CLK needs to be set to CORE_CLK=160MHz.
As it looks like, the clock definition for FreeRTOS is fetched from CORE_CLK = 160MHz. Per my understanding, the provided "standard" implementation, FreeRTOS is using the SysTick timer to generate its RTOS tick. Furthermore, also per my understanding, the SysTick timer is driven by CM7_CORE_CLK and not by CORE_CLK. (As simple test showed the system running a double frequency when compiling this way.)

I can try to override the value using the CM7_CORE_CLK but get the warning as shown above. Is this an error of the S32DS configuration tool or do I miss anything else here?