I'm building my development for S32K344 with EB, there is a fetal error when building ADC example.
C:\NXP\SW32K3_RTD_4.4_0.9.0_P02\eclipse\plugins\Adc_TS_T40D34M9I0R0\examples\EBT\Adc_example_EBT>make build
======================================================================
Creating directory for object files
Compiling src/main.c
In file included from C:/NXP/SW32K3_RTD_4.4_0.9.0_P02/eclipse/plugins/Base_TS_T40D34M9I0R0/include/Mcal.h:66,
from C:/NXP/SW32K3_RTD_4.4_0.9.0_P02/eclipse/plugins/Adc_TS_T40D34M9I0R0/include/Adc.h:44,
from src/main.c:26:
C:/NXP/SW32K3_RTD_4.4_0.9.0_P02/eclipse/plugins/Base_TS_T40D34M9I0R0/include/OsIf_Internal.h:46:10: fatal error: OsIf_Cfg.h: No such file or directory
46 | #include "OsIf_Cfg.h"
| ^~~~~~~~~~~~
compilation terminated.
make: *** [Makefile:232: main.o] Error 1
the project_parameters.mk configuratino as below:
#The path to the GCC instalation dir
GCC_DIR = C:/NXP/S32DS.3.4/S32DS/build_tools/gcc_v9.2/gcc-9.2-arm32-eabi
#The path to the EB Tresos instalation dir
TRESOS_DIR = C:/EB/tresos
#The path to the T32 instalation dir
T32_DIR = D:/Build_tools
#The path to the Tresos plugins directory
PLUGINS_DIR = C:/NXP/SW32K3_RTD_4.4_0.9.0_P02/eclipse/plugins
#The paths to the additional directories to be included at build phase
ADDITIONAL_INCLUDE_DIRS =
#Example specific parameters - do not modify
#MCAL modules used
MCAL_MODULE_LIST := Adc Base Det EcuC Mcu Os Rte Platform
#The package name for the MCAL release
AR_PKG_NAME = TS_T40D34M9I0R0
#The derivative of the device
EXAMPLE_DERIVATIVE =
#The nanme of the elf file
ELFNAME = main
#The test base address
TEST_BASE_ADDR = 0x20430000
#The name of the Tresos project
TRESOS_PROJECT_NAME = Adc_example_EBT
#The number of variants for the Tresos project
VARIANT_NO = 1
I have modified variants GCC_DIR PLUGINS_DIR TRESOS_DIR and don't change the other part.
I'd like to know what went wrong.
Thanks!