When I follow the document “INTEGRATE LLCE_CAN/LIN(MCAL DRIVER) TO S32DS 3.4”,I have some problems。
when i build the project,It wasn't as successful as the documentation。
The error is shown below
Description Resource Path Location Type。
C:/NXP/S32DS.3.4/S32DS/software/PlatformSDK_S32XX_2022_03/SW32_RTD_4_4_3_0_2_D2203/Base_TS_T40D11M30I2R0/include/Rte_MemMap.h:12754:6: error: #error "MemMap.h, no valid memory mapping symbol defined."
C:/NXP/S32DS.3.4/S32DS/software/PlatformSDK_S32XX_2022_03/SW32_RTD_4_4_3_0_2_D2203/Base_TS_T40D11M30I2R0/include/Rte_MemMap.h:12754:6: error: #error "MemMap.h, no valid memory mapping symbol defined."
D:/FISKER/NXP/LLCE-files/LLCE-CAN-LIN-demo/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/Integrate LLCE_CAN_LIN(MCAL Driver)
S32DS 3.4/source_code/llce/plugins/EcuM_TS_T40D11M10I0R0/include/EcuM_Externals.h:96,
from D:/FISKER/NXP/LLCE-files/LLCE-CAN-LIN-demo/Integrate LLCE_CAN_LIN(MCAL Driver)
D:/FISKER/NXP/LLCE-files/LLCE-CAN-LIN-demo/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/Integrate LLCE_CAN_LIN(MCAL Driver)
S32DS 3.4/source_code/llce/plugins/Lin_43_LLCE_TS_T40D11M10I0R0/include/Lin_43_LLCE.h:86,
from D:/FISKER/NXP/LLCE-files/LLCE-CAN-LIN-demo/Integrate LLCE_CAN_LIN(MCAL Driver)
C:/NXP/S32DS.3.4/S32DS/software/PlatformSDK_S32XX_2022_03/SW32_RTD_4_4_3_0_2_D2203/Base_TS_T40D11M30I2R0/include/Ecum_MemMap.h:12754:6: error: #error "MemMap.h, no valid memory mapping symbol defined."
12754 | #error "MemMap.h, no valid memory mapping symbol defined."
ID:/FISKER/NXP/LLCE-files/LLCE-CAN-LIN-demo/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/source_code/llce/plugins/EcuM_TS_T40D11M10I0R0/include/EcuM_Externals.h:101,
from D:/FISKER/NXP/LLCE-files/LLCE-CAN-LIN-demo/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/source_code/llce/Tresos_output/include/Lin_43_LLCE_Cfg.h:70,
from D:/FISKER/NXP/LLCE-files/LLCE-CAN-LIN-demo/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/source_code/llce/plugins/Lin_43_LLCE_TS_T40D11M10I0R0/include/Lin_43_LLCE.h:86,
from D:/FISKER/NXP/LLCE-files/LLCE-CAN-LIN-demo/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/source_code/llce/can_lin_common/stubs.h:37,
from ../src/main.c:33:
C:/NXP/S32DS.3.4/S32DS/software/PlatformSDK_S32XX_2022_03/SW32_RTD_4_4_3_0_2_D2203/Base_TS_T40D11M30I2R0/include/Ecum_MemMap.h:12754:6: error: #error "MemMap.h, no valid memory mapping symbol defined."
12754 | #error "MemMap.h, no valid memory mapping symbol defined."
| ^~~~~
../src/main.c: In function 'Lin_Driver_Sample_Test':
../src/main.c:174:2: error: implicit declaration of function 'Linflexd_Uart_Ip_AsyncSend' [-Werror=implicit-function-declaration]
174 | Linflexd_Uart_Ip_AsyncSend(0, "\r\nLin master received data is : ", strlen("\r\nLin master received data is : "));
| ^~~~~~~~~~~~~~~~~~~~~~~~~~
../src/main.c:175:8: error: implicit declaration of function 'Linflexd_Uart_Ip_GetTransmitStatus' [-Werror=implicit-function-declaration]
175 | while(Linflexd_Uart_Ip_GetTransmitStatus(0, &varRemainingBytes) == LINFLEXD_UART_IP_STATUS_BUSY);
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
../src/main.c:175:69: error: 'LINFLEXD_UART_IP_STATUS_BUSY' undeclared (first use in this function)
175 | while(Linflexd_Uart_Ip_GetTransmitStatus(0, &varRemainingBytes) == LINFLEXD_UART_IP_STATUS_BUSY);
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~
../src/main.c:175:69: note: each undeclared identifier is reported only once for each function it appears in
../src/main.c:178:11: warning: pointer targets in passing argument 1 of 'sprintf' differ in signedness [-Wpointer-sign]
178 | sprintf(str, "%x ", u8dataToReceivePtr[j]);
| ^~~
| |
| uint8 * {aka unsigned char *}
In file included from ../src/main.c:51:
c:\nxp\s32ds.3.4\s32ds\build_tools\gcc_v9.2\gcc-9.2-arm32-eabi\arm-none-eabi\include\stdio.h:244:14: note: expected 'char * restrict' but argument is of type 'uint8 *' {aka 'unsigned char *'}
244 | int sprintf (char *__restrict, const char *__restrict, ...)
| ^
../src/main.c:179:53: warning: pointer targets in passing argument 1 of 'strlen' differ in signedness [-Wpointer-sign]
179 | Linflexd_Uart_Ip_AsyncSend(0, (uint8*)str, strlen(str));
| ^~~
| |
| uint8 * {aka unsigned char *}
In file included from ../src/main.c:52:
c:\nxp\s32ds.3.4\s32ds\build_tools\gcc_v9.2\gcc-9.2-arm32-eabi\arm-none-eabi\include\string.h:41:17: note: expected 'const char *' but argument is of type 'uint8 *' {aka 'unsigned char *'}
41 | size_t strlen (const char *);
| ^~~~~~~~~~~~
../src/main.c: In function 'Can_Lin_Task':
../src/main.c:258:11: warning: pointer targets in passing argument 1 of 'sprintf' differ in signedness [-Wpointer-sign]
258 | sprintf(str, "\n\rCan_ControllerId value = %d\tCan_Rx Data len value = %d\n\r", Can_ControllerId, Can_RxDlc);
| ^~~
| |
| uint8 * {aka unsigned char *}
In file included from ../src/main.c:51:
c:\nxp\s32ds.3.4\s32ds\build_tools\gcc_v9.2\gcc-9.2-arm32-eabi\arm-none-eabi\include\stdio.h:244:14: note: expected 'char * restrict' but argument is of type 'uint8 *' {aka 'unsigned char *'}
244 | int sprintf (char *__restrict, const char *__restrict, ...)
| ^
../src/main.c:260:53: warning: pointer targets in passing argument 1 of 'strlen' differ in signedness [-Wpointer-sign]
260 | Linflexd_Uart_Ip_AsyncSend(0, (uint8*)str, strlen(str));
| ^~~
| |
| uint8 * {aka unsigned char *}
In file included from ../src/main.c:52:
c:\nxp\s32ds.3.4\s32ds\build_tools\gcc_v9.2\gcc-9.2-arm32-eabi\arm-none-eabi\include\string.h:41:17: note: expected 'const char *' but argument is of type 'uint8 *' {aka 'unsigned char *'}
41 | size_t strlen (const char *);
../src/main.c:262:70: error: 'LINFLEXD_UART_IP_STATUS_BUSY' undeclared (first use in this function)
262 | while(Linflexd_Uart_Ip_GetTransmitStatus(0, &varRemainingBytes) == LINFLEXD_UART_IP_STATUS_BUSY);
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~
../src/main.c:268:12: warning: pointer targets in passing argument 1 of 'sprintf' differ in signedness [-Wpointer-sign]
268 | sprintf(str, "%d ", Can_RxData[i]);
| ^~~
| |
| uint8 * {aka unsigned char *}
In file included from ../src/main.c:51:
c:\nxp\s32ds.3.4\s32ds\build_tools\gcc_v9.2\gcc-9.2-arm32-eabi\arm-none-eabi\include\stdio.h:244:14: note: expected 'char * restrict' but argument is of type 'uint8 *' {aka 'unsigned char *'}
244 | int sprintf (char *__restrict, const char *__restrict, ...)
| ^
../src/main.c:269:54: warning: pointer targets in passing argument 1 of 'strlen' differ in signedness [-Wpointer-sign]
269 | Linflexd_Uart_Ip_AsyncSend(0, (uint8*)str, strlen(str));
| ^~~
| |
| uint8 * {aka unsigned char *}
In file included from ../src/main.c:52:
c:\nxp\s32ds.3.4\s32ds\build_tools\gcc_v9.2\gcc-9.2-arm32-eabi\arm-none-eabi\include\string.h:41:17: note: expected 'const char *' but argument is of type 'uint8 *' {aka 'unsigned char *'}
41 | size_t strlen (const char *);
| ^~~~~~~~~~~~
make: *** [llce/plugins/Rte_TS_T40D11M10I0R0/src/subdir.mk:20: llce/plugins/Rte_TS_T40D11M10I0R0/src/SchM_Can_43_LLCE.o] Error 1
make: *** Waiting for unfinished jobs....
../src/main.c: In function 'main':
../src/main.c:294:2: error: implicit declaration of function 'Linflexd_Uart_Ip_Init' [-Werror=implicit-function-declaration]
294 | Linflexd_Uart_Ip_Init(LINFLEXD_INSTANCE, &Linflexd_Uart_Ip_pHwConfigPB_0_BOARD_INITPERIPHERALS);
| ^~~~~~~~~~~~~~~~~~~~~
../src/main.c:294:44: error: 'Linflexd_Uart_Ip_pHwConfigPB_0_BOARD_INITPERIPHERALS' undeclared (first use in this function)
294 | Linflexd_Uart_Ip_Init(LINFLEXD_INSTANCE, &Linflexd_Uart_Ip_pHwConfigPB_0_BOARD_INITPERIPHERALS);
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
cc1.exe: some warnings being treated as errors
<command-line>: warning: ISO C99 requires whitespace after the macro name
Invoking: Standard S32DS C Compiler
arm-none-eabi-gcc "@llce/plugins/Os_TS_T40D11M10I0R0/src/Os_counter_api.args" -MMD -MP -MF"llce/plugins/Os_TS_T40D11M10I0R0/src/Os_multicore.d" -MT"llce/plugins/Os_TS_T40D11M10I0R0/src/Os_multicore.o" -o "llce/plugins/Os_TS_T40D11M10I0R0/src/Os_multicore.o" "../llce/plugins/Os_TS_T40D11M10I0R0/src/Os_multicore.c"
Invoking: Standard S32DS C Compiler
Invoking: Standard S32DS C Compiler
arm-none-eabi-gcc "@llce/plugins/Lin_43_LLCE_TS_T40D11M10I0R0/src/Lin_43_LLCE.args" -MMD -MP -MF"llce/plugins/Lin_43_LLCE_TS_T40D11M10I0R0/src/Lin_43_LLCE.d" -MT"llce/plugins/Lin_43_LLCE_TS_T40D11M10I0R0/src/Lin_43_LLCE.o" -o "llce/plugins/Lin_43_LLCE_TS_T40D11M10I0R0/src/Lin_43_LLCE.o" "../llce/plugins/Lin_43_LLCE_TS_T40D11M10I0R0/src/Lin_43_LLCE.c"
Building file: ../llce/plugins/Lin_43_LLCE_TS_T40D11M10I0R0/src/Lin_Llce_Irq.c
Building file: ../llce/plugins/EcuM_TS_T40D11M10I0R0/src/EcuM.c
make: *** [src/subdir.mk:20: src/main.o] Error 1
arm-none-eabi-gcc "@llce/plugins/Lin_43_LLCE_TS_T40D11M10I0R0/src/Lin_43_LLCE.args" -MMD -MP -MF"llce/plugins/Lin_43_LLCE_TS_T40D11M10I0R0/src/Lin_Llce.d" -MT"llce/plugins/Lin_43_LLCE_TS_T40D11M10I0R0/src/Lin_Llce.o" -o "llce/plugins/Lin_43_LLCE_TS_T40D11M10I0R0/src/Lin_Llce.o" "../llce/plugins/Lin_43_LLCE_TS_T40D11M10I0R0/src/Lin_Llce.c"
Invoking: Standard S32DS C Compiler
arm-none-eabi-gcc "@llce/plugins/Lin_43_LLCE_TS_T40D11M10I0R0/src/Lin_43_LLCE.args" -MMD -MP -MF"llce/plugins/Lin_43_LLCE_TS_T40D11M10I0R0/src/Lin_Llce_Irq.d" -MT"llce/plugins/Lin_43_LLCE_TS_T40D11M10I0R0/src/Lin_Llce_Irq.o" -o "llce/plugins/Lin_43_LLCE_TS_T40D11M10I0R0/src/Lin_Llce_Irq.o" "../llce/plugins/Lin_43_LLCE_TS_T40D11M10I0R0/src/Lin_Llce_Irq.c"
Invoking: Standard S32DS C Compiler
arm-none-eabi-gcc "@llce/plugins/EcuM_TS_T40D11M10I0R0/src/EcuM.args" -MMD -MP -MF"llce/plugins/EcuM_TS_T40D11M10I0R0/src/EcuM.d" -MT"llce/plugins/EcuM_TS_T40D11M10I0R0/src/EcuM.o" -o "llce/plugins/EcuM_TS_T40D11M10I0R0/src/EcuM.o" "../llce/plugins/EcuM_TS_T40D11M10I0R0/src/EcuM.c"
<command-line>: warning: ISO C99 requires whitespace after the macro name
Finished building: ../llce/plugins/Os_TS_T40D11M10I0R0/src/Os_counter_api.c
<command-line>: warning: ISO C99 requires whitespace after the macro name
<command-line>: warning: ISO C99 requires whitespace after the macro name
In file included from D:/FISKER/NXP/LLCE-files/LLCE-CAN-LIN-demo/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/source_code/llce/plugins/EcuM_TS_T40D11M10I0R0/include/EcuM_Externals.h:96,
from D:/FISKER/NXP/LLCE-files/LLCE-CAN-LIN-demo/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/source_code/llce/Tresos_output/include/Lin_43_LLCE_Cfg.h:70,
from D:/FISKER/NXP/LLCE-files/LLCE-CAN-LIN-demo/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/source_code/llce/plugins/Lin_43_LLCE_TS_T40D11M10I0R0/include/Lin_43_LLCE.h:86,
from ../llce/plugins/Lin_43_LLCE_TS_T40D11M10I0R0/src/Lin_43_LLCE.c:95:
C:/NXP/S32DS.3.4/S32DS/software/PlatformSDK_S32XX_2022_03/SW32_RTD_4_4_3_0_2_D2203/Base_TS_T40D11M30I2R0/include/Ecum_MemMap.h:12754:6: error: #error "MemMap.h, no valid memory mapping symbol defined."
12754 | #error "MemMap.h, no valid memory mapping symbol defined."
| ^~~~~
In file included from D:/FISKER/NXP/LLCE-files/LLCE-CAN-LIN-demo/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/source_code/llce/plugins/EcuM_TS_T40D11M10I0R0/include/EcuM_Externals.h:96,
from D:/FISKER/NXP/LLCE-files/LLCE-CAN-LIN-demo/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/source_code/llce/Tresos_output/include/Lin_43_LLCE_Cfg.h:70,
from D:/FISKER/NXP/LLCE-files/LLCE-CAN-LIN-demo/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/source_code/llce/plugins/Lin_43_LLCE_TS_T40D11M10I0R0/include/Lin_43_LLCE.h:86,
from ../llce/plugins/Lin_43_LLCE_TS_T40D11M10I0R0/src/Lin_Llce.c:93:
C:/NXP/S32DS.3.4/S32DS/software/PlatformSDK_S32XX_2022_03/SW32_RTD_4_4_3_0_2_D2203/Base_TS_T40D11M30I2R0/include/Ecum_MemMap.h:12754:6: error: #error "MemMap.h, no valid memory mapping symbol defined."
12754 | #error "MemMap.h, no valid memory mapping symbol defined."
| ^~~~~
In file included from D:/FISKER/NXP/LLCE-files/LLCE-CAN-LIN-demo/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/source_code/llce/plugins/EcuM_TS_T40D11M10I0R0/include/EcuM_Externals.h:101,
from D:/FISKER/NXP/LLCE-files/LLCE-CAN-LIN-demo/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/source_code/llce/Tresos_output/include/Lin_43_LLCE_Cfg.h:70,
from D:/FISKER/NXP/LLCE-files/LLCE-CAN-LIN-demo/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/source_code/llce/plugins/Lin_43_LLCE_TS_T40D11M10I0R0/include/Lin_43_LLCE.h:86,
from ../llce/plugins/Lin_43_LLCE_TS_T40D11M10I0R0/src/Lin_Llce.c:93:
C:/NXP/S32DS.3.4/S32DS/software/PlatformSDK_S32XX_2022_03/SW32_RTD_4_4_3_0_2_D2203/Base_TS_T40D11M30I2R0/include/Ecum_MemMap.h:12754:6: error: #error "MemMap.h, no valid memory mapping symbol defined."
12754 | #error "MemMap.h, no valid memory mapping symbol defined."
| ^~~~~
In file included from D:/FISKER/NXP/LLCE-files/LLCE-CAN-LIN-demo/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/source_code/llce/plugins/EcuM_TS_T40D11M10I0R0/include/EcuM_Externals.h:101,
from D:/FISKER/NXP/LLCE-files/LLCE-CAN-LIN-demo/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/source_code/llce/Tresos_output/include/Lin_43_LLCE_Cfg.h:70,
from D:/FISKER/NXP/LLCE-files/LLCE-CAN-LIN-demo/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/source_code/llce/plugins/Lin_43_LLCE_TS_T40D11M10I0R0/include/Lin_43_LLCE.h:86,
from ../llce/plugins/Lin_43_LLCE_TS_T40D11M10I0R0/src/Lin_43_LLCE.c:95:
C:/NXP/S32DS.3.4/S32DS/software/PlatformSDK_S32XX_2022_03/SW32_RTD_4_4_3_0_2_D2203/Base_TS_T40D11M30I2R0/include/Ecum_MemMap.h:12754:6: error: #error "MemMap.h, no valid memory mapping symbol defined."
12754 | #error "MemMap.h, no valid memory mapping symbol defined."
| ^~~~~
In file included from D:/FISKER/NXP/LLCE-files/LLCE-CAN-LIN-demo/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/source_code/llce/platform_common/firmware_loading/Llce_InterfaceLinTypes.h:56,
from D:/FISKER/NXP/LLCE-files/LLCE-CAN-LIN-demo/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/source_code/llce/Tresos_output/include/Lin_43_LLCE_Cfg.h:77,
from D:/FISKER/NXP/LLCE-files/LLCE-CAN-LIN-demo/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/source_code/llce/plugins/Lin_43_LLCE_TS_T40D11M10I0R0/include/Lin_43_LLCE.h:86,
from ../llce/plugins/Lin_43_LLCE_TS_T40D11M10I0R0/src/Lin_43_LLCE.c:95:
D:/FISKER/NXP/LLCE-files/LLCE-CAN-LIN-demo/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/source_code/llce/platform_common/firmware_loading/StdRegMacros.h:70: warning: "REG_WRITE32" redefined
70 | #define REG_WRITE32 Reg_Write32
|
In file included from D:/FISKER/NXP/LLCE-files/LLCE-CAN-LIN-demo/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/source_code/llce/platform_common/firmware_loading/Llce_InterfaceLinTypes.h:56,
from D:/FISKER/NXP/LLCE-files/LLCE-CAN-LIN-demo/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/source_code/llce/Tresos_output/include/Lin_43_LLCE_Cfg.h:77,
from D:/FISKER/NXP/LLCE-files/LLCE-CAN-LIN-demo/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/source_code/llce/plugins/Lin_43_LLCE_TS_T40D11M10I0R0/include/Lin_43_LLCE.h:86,
from ../llce/plugins/Lin_43_LLCE_TS_T40D11M10I0R0/src/Lin_Llce.c:93:
D:/FISKER/NXP/LLCE-files/LLCE-CAN-LIN-demo/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/source_code/llce/platform_common/firmware_loading/StdRegMacros.h:70: warning: "REG_WRITE32" redefined
70 | #define REG_WRITE32 Reg_Write32
|
In file included from C:/NXP/S32DS.3.4/S32DS/software/PlatformSDK_S32XX_2022_03/SW32_RTD_4_4_3_0_2_D2203/Base_TS_T40D11M30I2R0/header/S32G274A_SYSTICK.h:81,
from C:/Users/or00828752/workspaceS32DS.3.4/LLCE_CAN_LIN/LLCE_CAN_LIN_M7_0/generate/include/OsIf_Cfg.h:49,
from C:/NXP/S32DS.3.4/S32DS/software/PlatformSDK_S32XX_2022_03/SW32_RTD_4_4_3_0_2_D2203/Base_TS_T40D11M30I2R0/include/OsIf_Internal.h:46,
from C:/NXP/S32DS.3.4/S32DS/software/PlatformSDK_S32XX_2022_03/SW32_RTD_4_4_3_0_2_D2203/Base_TS_T40D11M30I2R0/include/Mcal.h:66,
from D:/FISKER/NXP/LLCE-files/LLCE-CAN-LIN-demo/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/source_code/llce/plugins/Lin_43_LLCE_TS_T40D11M10I0R0/include/Lin_43_LLCE.h:83,
from ../llce/plugins/Lin_43_LLCE_TS_T40D11M10I0R0/src/Lin_43_LLCE.c:95:
C:/NXP/S32DS.3.4/S32DS/software/PlatformSDK_S32XX_2022_03/SW32_RTD_4_4_3_0_2_D2203/Base_TS_T40D11M30I2R0/header/S32G274A_COMMON.h:133: note: this is the location of the previous definition
133 | #define REG_WRITE32(address, value) ((*(volatile uint32_t*)(address))= (uint32_t)(value))
|
In file included from C:/NXP/S32DS.3.4/S32DS/software/PlatformSDK_S32XX_2022_03/SW32_RTD_4_4_3_0_2_D2203/Base_TS_T40D11M30I2R0/header/S32G274A_SYSTICK.h:81,
from C:/Users/or00828752/workspaceS32DS.3.4/LLCE_CAN_LIN/LLCE_CAN_LIN_M7_0/generate/include/OsIf_Cfg.h:49,
from C:/NXP/S32DS.3.4/S32DS/software/PlatformSDK_S32XX_2022_03/SW32_RTD_4_4_3_0_2_D2203/Base_TS_T40D11M30I2R0/include/OsIf_Internal.h:46,
from C:/NXP/S32DS.3.4/S32DS/software/PlatformSDK_S32XX_2022_03/SW32_RTD_4_4_3_0_2_D2203/Base_TS_T40D11M30I2R0/include/Mcal.h:66,
from D:/FISKER/NXP/LLCE-files/LLCE-CAN-LIN-demo/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/source_code/llce/plugins/Lin_43_LLCE_TS_T40D11M10I0R0/include/Lin_43_LLCE.h:83,
from ../llce/plugins/Lin_43_LLCE_TS_T40D11M10I0R0/src/Lin_Llce.c:93:
C:/NXP/S32DS.3.4/S32DS/software/PlatformSDK_S32XX_2022_03/SW32_RTD_4_4_3_0_2_D2203/Base_TS_T40D11M30I2R0/header/S32G274A_COMMON.h:133: note: this is the location of the previous definition
133 | #define REG_WRITE32(address, value) ((*(volatile uint32_t*)(address))= (uint32_t)(value))
|
In file included from D:/FISKER/NXP/LLCE-files/LLCE-CAN-LIN-demo/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/source_code/llce/platform_common/firmware_loading/Llce_InterfaceLinTypes.h:56,
from D:/FISKER/NXP/LLCE-files/LLCE-CAN-LIN-demo/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/source_code/llce/Tresos_output/include/Lin_43_LLCE_Cfg.h:77,
from D:/FISKER/NXP/LLCE-files/LLCE-CAN-LIN-demo/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/source_code/llce/plugins/Lin_43_LLCE_TS_T40D11M10I0R0/include/Lin_43_LLCE.h:86,
from ../llce/plugins/Lin_43_LLCE_TS_T40D11M10I0R0/src/Lin_43_LLCE.c:95:
D:/FISKER/NXP/LLCE-files/LLCE-CAN-LIN-demo/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/source_code/llce/platform_common/firmware_loading/StdRegMacros.h:73: warning: "REG_READ32" redefined
73 | #define REG_READ32 Reg_Read32
|
In file included from D:/FISKER/NXP/LLCE-files/LLCE-CAN-LIN-demo/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/source_code/llce/platform_common/firmware_loading/Llce_InterfaceLinTypes.h:56,
from D:/FISKER/NXP/LLCE-files/LLCE-CAN-LIN-demo/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/source_code/llce/Tresos_output/include/Lin_43_LLCE_Cfg.h:77,
from D:/FISKER/NXP/LLCE-files/LLCE-CAN-LIN-demo/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/source_code/llce/plugins/Lin_43_LLCE_TS_T40D11M10I0R0/include/Lin_43_LLCE.h:86,
from ../llce/plugins/Lin_43_LLCE_TS_T40D11M10I0R0/src/Lin_Llce.c:93:
D:/FISKER/NXP/LLCE-files/LLCE-CAN-LIN-demo/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/source_code/llce/platform_common/firmware_loading/StdRegMacros.h:73: warning: "REG_READ32" redefined
73 | #define REG_READ32 Reg_Read32
|
In file included from C:/NXP/S32DS.3.4/S32DS/software/PlatformSDK_S32XX_2022_03/SW32_RTD_4_4_3_0_2_D2203/Base_TS_T40D11M30I2R0/header/S32G274A_SYSTICK.h:81,
from C:/Users/or00828752/workspaceS32DS.3.4/LLCE_CAN_LIN/LLCE_CAN_LIN_M7_0/generate/include/OsIf_Cfg.h:49,
from C:/NXP/S32DS.3.4/S32DS/software/PlatformSDK_S32XX_2022_03/SW32_RTD_4_4_3_0_2_D2203/Base_TS_T40D11M30I2R0/include/OsIf_Internal.h:46,
from C:/NXP/S32DS.3.4/S32DS/software/PlatformSDK_S32XX_2022_03/SW32_RTD_4_4_3_0_2_D2203/Base_TS_T40D11M30I2R0/include/Mcal.h:66,
from D:/FISKER/NXP/LLCE-files/LLCE-CAN-LIN-demo/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/source_code/llce/plugins/Lin_43_LLCE_TS_T40D11M10I0R0/include/Lin_43_LLCE.h:83,
from ../llce/plugins/Lin_43_LLCE_TS_T40D11M10I0R0/src/Lin_43_LLCE.c:95:
C:/NXP/S32DS.3.4/S32DS/software/PlatformSDK_S32XX_2022_03/SW32_RTD_4_4_3_0_2_D2203/Base_TS_T40D11M30I2R0/header/S32G274A_COMMON.h:126: note: this is the location of the previous definition
126 | #define REG_READ32(address) (*(volatile uint32_t*)(address))
|
In file included from C:/NXP/S32DS.3.4/S32DS/software/PlatformSDK_S32XX_2022_03/SW32_RTD_4_4_3_0_2_D2203/Base_TS_T40D11M30I2R0/header/S32G274A_SYSTICK.h:81,
from C:/Users/or00828752/workspaceS32DS.3.4/LLCE_CAN_LIN/LLCE_CAN_LIN_M7_0/generate/include/OsIf_Cfg.h:49,
from C:/NXP/S32DS.3.4/S32DS/software/PlatformSDK_S32XX_2022_03/SW32_RTD_4_4_3_0_2_D2203/Base_TS_T40D11M30I2R0/include/OsIf_Internal.h:46,
from C:/NXP/S32DS.3.4/S32DS/software/PlatformSDK_S32XX_2022_03/SW32_RTD_4_4_3_0_2_D2203/Base_TS_T40D11M30I2R0/include/Mcal.h:66,
from D:/FISKER/NXP/LLCE-files/LLCE-CAN-LIN-demo/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/source_code/llce/plugins/Lin_43_LLCE_TS_T40D11M10I0R0/include/Lin_43_LLCE.h:83,
from ../llce/plugins/Lin_43_LLCE_TS_T40D11M10I0R0/src/Lin_Llce.c:93:
C:/NXP/S32DS.3.4/S32DS/software/PlatformSDK_S32XX_2022_03/SW32_RTD_4_4_3_0_2_D2203/Base_TS_T40D11M30I2R0/header/S32G274A_COMMON.h:126: note: this is the location of the previous definition
126 | #define REG_READ32(address) (*(volatile uint32_t*)(address))
|
In file included from D:/FISKER/NXP/LLCE-files/LLCE-CAN-LIN-demo/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/source_code/llce/platform_common/firmware_loading/Llce_InterfaceLinTypes.h:56,
from D:/FISKER/NXP/LLCE-files/LLCE-CAN-LIN-demo/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/source_code/llce/Tresos_output/include/Lin_43_LLCE_Cfg.h:77,
from D:/FISKER/NXP/LLCE-files/LLCE-CAN-LIN-demo/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/source_code/llce/plugins/Lin_43_LLCE_TS_T40D11M10I0R0/include/Lin_43_LLCE.h:86,
from ../llce/plugins/Lin_43_LLCE_TS_T40D11M10I0R0/src/Lin_43_LLCE.c:95:
D:/FISKER/NXP/LLCE-files/LLCE-CAN-LIN-demo/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/source_code/llce/platform_common/firmware_loading/StdRegMacros.h:82: warning: "REG_BIT_CLEAR32" redefined
82 | #define REG_BIT_CLEAR32 Reg_Bit_Clear32
|
In file included from D:/FISKER/NXP/LLCE-files/LLCE-CAN-LIN-demo/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/source_code/llce/platform_common/firmware_loading/Llce_InterfaceLinTypes.h:56,
from D:/FISKER/NXP/LLCE-files/LLCE-CAN-LIN-demo/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/source_code/llce/Tresos_output/include/Lin_43_LLCE_Cfg.h:77,
from D:/FISKER/NXP/LLCE-files/LLCE-CAN-LIN-demo/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/source_code/llce/plugins/Lin_43_LLCE_TS_T40D11M10I0R0/include/Lin_43_LLCE.h:86,
from ../llce/plugins/Lin_43_LLCE_TS_T40D11M10I0R0/src/Lin_Llce.c:93:
D:/FISKER/NXP/LLCE-files/LLCE-CAN-LIN-demo/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/source_code/llce/platform_common/firmware_loading/StdRegMacros.h:82: warning: "REG_BIT_CLEAR32" redefined
82 | #define REG_BIT_CLEAR32 Reg_Bit_Clear32
|
In file included from C:/NXP/S32DS.3.4/S32DS/software/PlatformSDK_S32XX_2022_03/SW32_RTD_4_4_3_0_2_D2203/Base_TS_T40D11M30I2R0/header/S32G274A_SYSTICK.h:81,
from C:/Users/or00828752/workspaceS32DS.3.4/LLCE_CAN_LIN/LLCE_CAN_LIN_M7_0/generate/include/OsIf_Cfg.h:49,
from C:/NXP/S32DS.3.4/S32DS/software/PlatformSDK_S32XX_2022_03/SW32_RTD_4_4_3_0_2_D2203/Base_TS_T40D11M30I2R0/include/OsIf_Internal.h:46,
from C:/NXP/S32DS.3.4/S32DS/software/PlatformSDK_S32XX_2022_03/SW32_RTD_4_4_3_0_2_D2203/Base_TS_T40D11M30I2R0/include/Mcal.h:66,
from D:/FISKER/NXP/LLCE-files/LLCE-CAN-LIN-demo/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/source_code/llce/plugins/Lin_43_LLCE_TS_T40D11M10I0R0/include/Lin_43_LLCE.h:83,
from ../llce/plugins/Lin_43_LLCE_TS_T40D11M10I0R0/src/Lin_43_LLCE.c:95:
C:/NXP/S32DS.3.4/S32DS/software/PlatformSDK_S32XX_2022_03/SW32_RTD_4_4_3_0_2_D2203/Base_TS_T40D11M30I2R0/header/S32G274A_COMMON.h:147: note: this is the location of the previous definition
147 | #define REG_BIT_CLEAR32(address, mask) ((*(volatile uint32_t*)(address))&= ((uint32_t)~((uint32_t)(mask))))
|
In file included from C:/NXP/S32DS.3.4/S32DS/software/PlatformSDK_S32XX_2022_03/SW32_RTD_4_4_3_0_2_D2203/Base_TS_T40D11M30I2R0/header/S32G274A_SYSTICK.h:81,
from C:/Users/or00828752/workspaceS32DS.3.4/LLCE_CAN_LIN/LLCE_CAN_LIN_M7_0/generate/include/OsIf_Cfg.h:49,
from C:/NXP/S32DS.3.4/S32DS/software/PlatformSDK_S32XX_2022_03/SW32_RTD_4_4_3_0_2_D2203/Base_TS_T40D11M30I2R0/include/OsIf_Internal.h:46,
from C:/NXP/S32DS.3.4/S32DS/software/PlatformSDK_S32XX_2022_03/SW32_RTD_4_4_3_0_2_D2203/Base_TS_T40D11M30I2R0/include/Mcal.h:66,
from D:/FISKER/NXP/LLCE-files/LLCE-CAN-LIN-demo/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/source_code/llce/plugins/Lin_43_LLCE_TS_T40D11M10I0R0/include/Lin_43_LLCE.h:83,
from ../llce/plugins/Lin_43_LLCE_TS_T40D11M10I0R0/src/Lin_Llce.c:93:
C:/NXP/S32DS.3.4/S32DS/software/PlatformSDK_S32XX_2022_03/SW32_RTD_4_4_3_0_2_D2203/Base_TS_T40D11M30I2R0/header/S32G274A_COMMON.h:147: note: this is the location of the previous definition
147 | #define REG_BIT_CLEAR32(address, mask) ((*(volatile uint32_t*)(address))&= ((uint32_t)~((uint32_t)(mask))))
|
In file included from D:/FISKER/NXP/LLCE-files/LLCE-CAN-LIN-demo/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/source_code/llce/platform_common/firmware_loading/Llce_InterfaceLinTypes.h:56,
from D:/FISKER/NXP/LLCE-files/LLCE-CAN-LIN-demo/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/source_code/llce/Tresos_output/include/Lin_43_LLCE_Cfg.h:77,
from D:/FISKER/NXP/LLCE-files/LLCE-CAN-LIN-demo/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/source_code/llce/plugins/Lin_43_LLCE_TS_T40D11M10I0R0/include/Lin_43_LLCE.h:86,
from ../llce/plugins/Lin_43_LLCE_TS_T40D11M10I0R0/src/Lin_43_LLCE.c:95:
D:/FISKER/NXP/LLCE-files/LLCE-CAN-LIN-demo/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/source_code/llce/platform_common/firmware_loading/StdRegMacros.h:88: warning: "REG_BIT_SET32" redefined
88 | #define REG_BIT_SET32 Reg_Bit_Set32
|
<command-line>: warning: ISO C99 requires whitespace after the macro name
<command-line>: warning: ISO C99 requires whitespace after the macro name
In file included from D:/FISKER/NXP/LLCE-files/LLCE-CAN-LIN-demo/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/source_code/llce/platform_common/firmware_loading/Llce_InterfaceLinTypes.h:56,
from D:/FISKER/NXP/LLCE-files/LLCE-CAN-LIN-demo/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/source_code/llce/Tresos_output/include/Lin_43_LLCE_Cfg.h:77,
from D:/FISKER/NXP/LLCE-files/LLCE-CAN-LIN-demo/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/source_code/llce/plugins/Lin_43_LLCE_TS_T40D11M10I0R0/include/Lin_43_LLCE.h:86,
from ../llce/plugins/Lin_43_LLCE_TS_T40D11M10I0R0/src/Lin_Llce.c:93:
D:/FISKER/NXP/LLCE-files/LLCE-CAN-LIN-demo/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/source_code/llce/platform_common/firmware_loading/StdRegMacros.h:88: warning: "REG_BIT_SET32" redefined
88 | #define REG_BIT_SET32 Reg_Bit_Set32
|
In file included from C:/NXP/S32DS.3.4/S32DS/software/PlatformSDK_S32XX_2022_03/SW32_RTD_4_4_3_0_2_D2203/Base_TS_T40D11M30I2R0/header/S32G274A_SYSTICK.h:81,
from C:/Users/or00828752/workspaceS32DS.3.4/LLCE_CAN_LIN/LLCE_CAN_LIN_M7_0/generate/include/OsIf_Cfg.h:49,
from C:/NXP/S32DS.3.4/S32DS/software/PlatformSDK_S32XX_2022_03/SW32_RTD_4_4_3_0_2_D2203/Base_TS_T40D11M30I2R0/include/OsIf_Internal.h:46,
from C:/NXP/S32DS.3.4/S32DS/software/PlatformSDK_S32XX_2022_03/SW32_RTD_4_4_3_0_2_D2203/Base_TS_T40D11M30I2R0/include/Mcal.h:66,
from D:/FISKER/NXP/LLCE-files/LLCE-CAN-LIN-demo/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/source_code/llce/plugins/Lin_43_LLCE_TS_T40D11M10I0R0/include/Lin_43_LLCE.h:83,
from ../llce/plugins/Lin_43_LLCE_TS_T40D11M10I0R0/src/Lin_43_LLCE.c:95:
C:/NXP/S32DS.3.4/S32DS/software/PlatformSDK_S32XX_2022_03/SW32_RTD_4_4_3_0_2_D2203/Base_TS_T40D11M30I2R0/header/S32G274A_COMMON.h:140: note: this is the location of the previous definition
140 | #define REG_BIT_SET32(address, mask) ((*(volatile uint32_t*)(address))|= (uint32_t)(mask))
|
In file included from D:/FISKER/NXP/LLCE-files/LLCE-CAN-LIN-demo/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/source_code/llce/plugins/EcuM_TS_T40D11M10I0R0/include/EcuM_Externals.h:96,
from D:/FISKER/NXP/LLCE-files/LLCE-CAN-LIN-demo/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/source_code/llce/plugins/EcuM_TS_T40D11M10I0R0/include/EcuM.h:44,
from ../llce/plugins/EcuM_TS_T40D11M10I0R0/src/EcuM.c:47:
C:/NXP/S32DS.3.4/S32DS/software/PlatformSDK_S32XX_2022_03/SW32_RTD_4_4_3_0_2_D2203/Base_TS_T40D11M30I2R0/include/Ecum_MemMap.h:12754:6: error: #error "MemMap.h, no valid memory mapping symbol defined."
12754 | #error "MemMap.h, no valid memory mapping symbol defined."
| ^~~~~
In file included from C:/NXP/S32DS.3.4/S32DS/software/PlatformSDK_S32XX_2022_03/SW32_RTD_4_4_3_0_2_D2203/Base_TS_T40D11M30I2R0/header/S32G274A_SYSTICK.h:81,
from C:/Users/or00828752/workspaceS32DS.3.4/LLCE_CAN_LIN/LLCE_CAN_LIN_M7_0/generate/include/OsIf_Cfg.h:49,
from C:/NXP/S32DS.3.4/S32DS/software/PlatformSDK_S32XX_2022_03/SW32_RTD_4_4_3_0_2_D2203/Base_TS_T40D11M30I2R0/include/OsIf_Internal.h:46,
from C:/NXP/S32DS.3.4/S32DS/software/PlatformSDK_S32XX_2022_03/SW32_RTD_4_4_3_0_2_D2203/Base_TS_T40D11M30I2R0/include/Mcal.h:66,
from D:/FISKER/NXP/LLCE-files/LLCE-CAN-LIN-demo/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/source_code/llce/plugins/Lin_43_LLCE_TS_T40D11M10I0R0/include/Lin_43_LLCE.h:83,
from ../llce/plugins/Lin_43_LLCE_TS_T40D11M10I0R0/src/Lin_Llce.c:93:
C:/NXP/S32DS.3.4/S32DS/software/PlatformSDK_S32XX_2022_03/SW32_RTD_4_4_3_0_2_D2203/Base_TS_T40D11M30I2R0/header/S32G274A_COMMON.h:140: note: this is the location of the previous definition
140 | #define REG_BIT_SET32(address, mask) ((*(volatile uint32_t*)(address))|= (uint32_t)(mask))
|
In file included from D:/FISKER/NXP/LLCE-files/LLCE-CAN-LIN-demo/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/source_code/llce/platform_common/firmware_loading/Llce_InterfaceLinTypes.h:56,
from D:/FISKER/NXP/LLCE-files/LLCE-CAN-LIN-demo/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/source_code/llce/Tresos_output/include/Lin_43_LLCE_Cfg.h:77,
from D:/FISKER/NXP/LLCE-files/LLCE-CAN-LIN-demo/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/source_code/llce/plugins/Lin_43_LLCE_TS_T40D11M10I0R0/include/Lin_43_LLCE.h:86,
from ../llce/plugins/Lin_43_LLCE_TS_T40D11M10I0R0/src/Lin_43_LLCE.c:95:
D:/FISKER/NXP/LLCE-files/LLCE-CAN-LIN-demo/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/source_code/llce/platform_common/firmware_loading/StdRegMacros.h:91: warning: "REG_RMW32" redefined
91 | #define REG_RMW32 Reg_Rmw32
|
In file included from D:/FISKER/NXP/LLCE-files/LLCE-CAN-LIN-demo/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/source_code/llce/plugins/EcuM_TS_T40D11M10I0R0/include/EcuM_Externals.h:101,
from D:/FISKER/NXP/LLCE-files/LLCE-CAN-LIN-demo/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/source_code/llce/plugins/EcuM_TS_T40D11M10I0R0/include/EcuM.h:44,
from ../llce/plugins/EcuM_TS_T40D11M10I0R0/src/EcuM.c:47:
C:/NXP/S32DS.3.4/S32DS/software/PlatformSDK_S32XX_2022_03/SW32_RTD_4_4_3_0_2_D2203/Base_TS_T40D11M30I2R0/include/Ecum_MemMap.h:12754:6: error: #error "MemMap.h, no valid memory mapping symbol defined."
12754 | #error "MemMap.h, no valid memory mapping symbol defined."
| ^~~~~
In file included from D:/FISKER/NXP/LLCE-files/LLCE-CAN-LIN-demo/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/source_code/llce/plugins/EcuM_TS_T40D11M10I0R0/include/EcuM_Externals.h:96,
from D:/FISKER/NXP/LLCE-files/LLCE-CAN-LIN-demo/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/source_code/llce/Tresos_output/include/Lin_43_LLCE_Cfg.h:70,
from D:/FISKER/NXP/LLCE-files/LLCE-CAN-LIN-demo/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/source_code/llce/plugins/Lin_43_LLCE_TS_T40D11M10I0R0/include/Lin_43_LLCE.h:86,
from ../llce/plugins/Lin_43_LLCE_TS_T40D11M10I0R0/src/Lin_Llce_Irq.c:87:
C:/NXP/S32DS.3.4/S32DS/software/PlatformSDK_S32XX_2022_03/SW32_RTD_4_4_3_0_2_D2203/Base_TS_T40D11M30I2R0/include/Ecum_MemMap.h:12754:6: error: #error "MemMap.h, no valid memory mapping symbol defined."
12754 | #error "MemMap.h, no valid memory mapping symbol defined."
| ^~~~~
In file included from D:/FISKER/NXP/LLCE-files/LLCE-CAN-LIN-demo/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/source_code/llce/platform_common/firmware_loading/Llce_InterfaceLinTypes.h:56,
from D:/FISKER/NXP/LLCE-files/LLCE-CAN-LIN-demo/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/source_code/llce/Tresos_output/include/Lin_43_LLCE_Cfg.h:77,
from D:/FISKER/NXP/LLCE-files/LLCE-CAN-LIN-demo/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/source_code/llce/plugins/Lin_43_LLCE_TS_T40D11M10I0R0/include/Lin_43_LLCE.h:86,
from ../llce/plugins/Lin_43_LLCE_TS_T40D11M10I0R0/src/Lin_Llce.c:93:
D:/FISKER/NXP/LLCE-files/LLCE-CAN-LIN-demo/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/source_code/llce/platform_common/firmware_loading/StdRegMacros.h:91: warning: "REG_RMW32" redefined
91 | #define REG_RMW32 Reg_Rmw32
|
In file included from C:/NXP/S32DS.3.4/S32DS/software/PlatformSDK_S32XX_2022_03/SW32_RTD_4_4_3_0_2_D2203/Base_TS_T40D11M30I2R0/header/S32G274A_SYSTICK.h:81,
from C:/Users/or00828752/workspaceS32DS.3.4/LLCE_CAN_LIN/LLCE_CAN_LIN_M7_0/generate/include/OsIf_Cfg.h:49,
from C:/NXP/S32DS.3.4/S32DS/software/PlatformSDK_S32XX_2022_03/SW32_RTD_4_4_3_0_2_D2203/Base_TS_T40D11M30I2R0/include/OsIf_Internal.h:46,
from C:/NXP/S32DS.3.4/S32DS/software/PlatformSDK_S32XX_2022_03/SW32_RTD_4_4_3_0_2_D2203/Base_TS_T40D11M30I2R0/include/Mcal.h:66,
from D:/FISKER/NXP/LLCE-files/LLCE-CAN-LIN-demo/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/source_code/llce/plugins/Lin_43_LLCE_TS_T40D11M10I0R0/include/Lin_43_LLCE.h:83,
from ../llce/plugins/Lin_43_LLCE_TS_T40D11M10I0R0/src/Lin_43_LLCE.c:95:
C:/NXP/S32DS.3.4/S32DS/software/PlatformSDK_S32XX_2022_03/SW32_RTD_4_4_3_0_2_D2203/Base_TS_T40D11M30I2R0/header/S32G274A_COMMON.h:155: note: this is the location of the previous definition
155 | #define REG_RMW32(address, mask, value) (REG_WRITE32((address), ((REG_READ32(address)& ((uint32_t)~((uint32_t)(mask))))| ((uint32_t)(value)))))
|
In file included from ../llce/plugins/EcuM_TS_T40D11M10I0R0/src/EcuM.c:154:
C:/NXP/S32DS.3.4/S32DS/software/PlatformSDK_S32XX_2022_03/SW32_RTD_4_4_3_0_2_D2203/Base_TS_T40D11M30I2R0/include/Ecum_MemMap.h:12754:6: error: #error "MemMap.h, no valid memory mapping symbol defined."
12754 | #error "MemMap.h, no valid memory mapping symbol defined."
| ^~~~~
In file included from C:/NXP/S32DS.3.4/S32DS/software/PlatformSDK_S32XX_2022_03/SW32_RTD_4_4_3_0_2_D2203/Base_TS_T40D11M30I2R0/header/S32G274A_SYSTICK.h:81,
from C:/Users/or00828752/workspaceS32DS.3.4/LLCE_CAN_LIN/LLCE_CAN_LIN_M7_0/generate/include/OsIf_Cfg.h:49,
from C:/NXP/S32DS.3.4/S32DS/software/PlatformSDK_S32XX_2022_03/SW32_RTD_4_4_3_0_2_D2203/Base_TS_T40D11M30I2R0/include/OsIf_Internal.h:46,
from C:/NXP/S32DS.3.4/S32DS/software/PlatformSDK_S32XX_2022_03/SW32_RTD_4_4_3_0_2_D2203/Base_TS_T40D11M30I2R0/include/Mcal.h:66,
from D:/FISKER/NXP/LLCE-files/LLCE-CAN-LIN-demo/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/source_code/llce/plugins/Lin_43_LLCE_TS_T40D11M10I0R0/include/Lin_43_LLCE.h:83,
from ../llce/plugins/Lin_43_LLCE_TS_T40D11M10I0R0/src/Lin_Llce.c:93:
C:/NXP/S32DS.3.4/S32DS/software/PlatformSDK_S32XX_2022_03/SW32_RTD_4_4_3_0_2_D2203/Base_TS_T40D11M30I2R0/header/S32G274A_COMMON.h:155: note: this is the location of the previous definition
155 | #define REG_RMW32(address, mask, value) (REG_WRITE32((address), ((REG_READ32(address)& ((uint32_t)~((uint32_t)(mask))))| ((uint32_t)(value)))))
|
Finished building: ../llce/plugins/Os_TS_T40D11M10I0R0/src/Os_multicore.c
In file included from ../llce/plugins/EcuM_TS_T40D11M10I0R0/src/EcuM.c:159:
C:/NXP/S32DS.3.4/S32DS/software/PlatformSDK_S32XX_2022_03/SW32_RTD_4_4_3_0_2_D2203/Base_TS_T40D11M30I2R0/include/Ecum_MemMap.h:12754:6: error: #error "MemMap.h, no valid memory mapping symbol defined."
12754 | #error "MemMap.h, no valid memory mapping symbol defined."
| ^~~~~
In file included from D:/FISKER/NXP/LLCE-files/LLCE-CAN-LIN-demo/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/source_code/llce/plugins/EcuM_TS_T40D11M10I0R0/include/EcuM_Externals.h:101,
from D:/FISKER/NXP/LLCE-files/LLCE-CAN-LIN-demo/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/source_code/llce/Tresos_output/include/Lin_43_LLCE_Cfg.h:70,
from D:/FISKER/NXP/LLCE-files/LLCE-CAN-LIN-demo/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/source_code/llce/plugins/Lin_43_LLCE_TS_T40D11M10I0R0/include/Lin_43_LLCE.h:86,
from ../llce/plugins/Lin_43_LLCE_TS_T40D11M10I0R0/src/Lin_Llce_Irq.c:87:
C:/NXP/S32DS.3.4/S32DS/software/PlatformSDK_S32XX_2022_03/SW32_RTD_4_4_3_0_2_D2203/Base_TS_T40D11M30I2R0/include/Ecum_MemMap.h:12754:6: error: #error "MemMap.h, no valid memory mapping symbol defined."
12754 | #error "MemMap.h, no valid memory mapping symbol defined."
| ^~~~~
../llce/plugins/EcuM_TS_T40D11M10I0R0/src/EcuM.c: In function 'EcuM_ValidateWakeupEvent':
In file included from D:/FISKER/NXP/LLCE-files/LLCE-CAN-LIN-demo/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/source_code/llce/plugins/Lin_43_LLCE_TS_T40D11M10I0R0/include/Lin_Llce.h:148,
from D:/FISKER/NXP/LLCE-files/LLCE-CAN-LIN-demo/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/source_code/llce/plugins/Lin_43_LLCE_TS_T40D11M10I0R0/include/Lin_43_LLCE_IPW.h:77,
from ../llce/plugins/Lin_43_LLCE_TS_T40D11M10I0R0/src/Lin_43_LLCE.c:96:
C:/NXP/S32DS.3.4/S32DS/software/PlatformSDK_S32XX_2022_03/SW32_RTD_4_4_3_0_2_D2203/Base_TS_T40D11M30I2R0/include/Lin_43_LLCE_MemMap.h:12910:6: error: #error "MemMap.h, no valid memory mapping symbol defined."
12910 | #error "MemMap.h, no valid memory mapping symbol defined."
| ^~~~~
In file included from D:/FISKER/NXP/LLCE-files/LLCE-CAN-LIN-demo/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/source_code/llce/plugins/Lin_43_LLCE_TS_T40D11M10I0R0/include/Lin_Llce.h:148,
from ../llce/plugins/Lin_43_LLCE_TS_T40D11M10I0R0/src/Lin_Llce.c:94:
C:/NXP/S32DS.3.4/S32DS/software/PlatformSDK_S32XX_2022_03/SW32_RTD_4_4_3_0_2_D2203/Base_TS_T40D11M30I2R0/include/Lin_43_LLCE_MemMap.h:12910:6: error: #error "MemMap.h, no valid memory mapping symbol defined."
12910 | #error "MemMap.h, no valid memory mapping symbol defined."
| ^~~~~
../llce/plugins/EcuM_TS_T40D11M10I0R0/src/EcuM.c:195:53: warning: unused parameter 'events' [-Wunused-parameter]
195 | void EcuM_ValidateWakeupEvent(EcuM_WakeupSourceType events)
| ~~~~~~~~~~~~~~~~~~~~~~^~~~~~
In file included from D:/FISKER/NXP/LLCE-files/LLCE-CAN-LIN-demo/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/source_code/llce/plugins/Lin_43_LLCE_TS_T40D11M10I0R0/include/Lin_Llce.h:159,
from D:/FISKER/NXP/LLCE-files/LLCE-CAN-LIN-demo/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/source_code/llce/plugins/Lin_43_LLCE_TS_T40D11M10I0R0/include/Lin_43_LLCE_IPW.h:77,
from ../llce/plugins/Lin_43_LLCE_TS_T40D11M10I0R0/src/Lin_43_LLCE.c:96:
C:/NXP/S32DS.3.4/S32DS/software/PlatformSDK_S32XX_2022_03/SW32_RTD_4_4_3_0_2_D2203/Base_TS_T40D11M30I2R0/include/Lin_43_LLCE_MemMap.h:12910:6: error: #error "MemMap.h, no valid memory mapping symbol defined."
12910 | #error "MemMap.h, no valid memory mapping symbol defined."
| ^~~~~
In file included from D:/FISKER/NXP/LLCE-files/LLCE-CAN-LIN-demo/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/source_code/llce/platform_common/firmware_loading/Llce_InterfaceLinTypes.h:56,
from D:/FISKER/NXP/LLCE-files/LLCE-CAN-LIN-demo/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/source_code/llce/Tresos_output/include/Lin_43_LLCE_Cfg.h:77,
from D:/FISKER/NXP/LLCE-files/LLCE-CAN-LIN-demo/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/source_code/llce/plugins/Lin_43_LLCE_TS_T40D11M10I0R0/include/Lin_43_LLCE.h:86,
from ../llce/plugins/Lin_43_LLCE_TS_T40D11M10I0R0/src/Lin_Llce_Irq.c:87:
D:/FISKER/NXP/LLCE-files/LLCE-CAN-LIN-demo/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/source_code/llce/platform_common/firmware_loading/StdRegMacros.h:70: warning: "REG_WRITE32" redefined
70 | #define REG_WRITE32 Reg_Write32
|
../llce/plugins/EcuM_TS_T40D11M10I0R0/src/EcuM.c: In function 'EcuM_CheckWakeup':
In file included from D:/FISKER/NXP/LLCE-files/LLCE-CAN-LIN-demo/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/source_code/llce/plugins/Lin_43_LLCE_TS_T40D11M10I0R0/include/Lin_Llce.h:159,
from ../llce/plugins/Lin_43_LLCE_TS_T40D11M10I0R0/src/Lin_Llce.c:94:
C:/NXP/S32DS.3.4/S32DS/software/PlatformSDK_S32XX_2022_03/SW32_RTD_4_4_3_0_2_D2203/Base_TS_T40D11M30I2R0/include/Lin_43_LLCE_MemMap.h:12910:6: error: #error "MemMap.h, no valid memory mapping symbol defined."
12910 | #error "MemMap.h, no valid memory mapping symbol defined."
| ^~~~~
../llce/plugins/EcuM_TS_T40D11M10I0R0/src/EcuM.c:208:45: warning: unused parameter 'wakeupSource' [-Wunused-parameter]
208 | void EcuM_CheckWakeup(EcuM_WakeupSourceType wakeupSource)
| ~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~
In file included from C:/NXP/S32DS.3.4/S32DS/software/PlatformSDK_S32XX_2022_03/SW32_RTD_4_4_3_0_2_D2203/Base_TS_T40D11M30I2R0/header/S32G274A_SYSTICK.h:81,
from C:/Users/or00828752/workspaceS32DS.3.4/LLCE_CAN_LIN/LLCE_CAN_LIN_M7_0/generate/include/OsIf_Cfg.h:49,
from C:/NXP/S32DS.3.4/S32DS/software/PlatformSDK_S32XX_2022_03/SW32_RTD_4_4_3_0_2_D2203/Base_TS_T40D11M30I2R0/include/OsIf_Internal.h:46,
from C:/NXP/S32DS.3.4/S32DS/software/PlatformSDK_S32XX_2022_03/SW32_RTD_4_4_3_0_2_D2203/Base_TS_T40D11M30I2R0/include/Mcal.h:66,
from D:/FISKER/NXP/LLCE-files/LLCE-CAN-LIN-demo/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/source_code/llce/plugins/Lin_43_LLCE_TS_T40D11M10I0R0/include/Lin_43_LLCE.h:83,
from ../llce/plugins/Lin_43_LLCE_TS_T40D11M10I0R0/src/Lin_Llce_Irq.c:87:
C:/NXP/S32DS.3.4/S32DS/software/PlatformSDK_S32XX_2022_03/SW32_RTD_4_4_3_0_2_D2203/Base_TS_T40D11M30I2R0/header/S32G274A_COMMON.h:133: note: this is the location of the previous definition
133 | #define REG_WRITE32(address, value) ((*(volatile uint32_t*)(address))= (uint32_t)(value))
|
In file included from ../llce/plugins/Lin_43_LLCE_TS_T40D11M10I0R0/src/Lin_Llce.c:196:
C:/NXP/S32DS.3.4/S32DS/software/PlatformSDK_S32XX_2022_03/SW32_RTD_4_4_3_0_2_D2203/Base_TS_T40D11M30I2R0/include/Lin_43_LLCE_MemMap.h:12910:6: error: #error "MemMap.h, no valid memory mapping symbol defined."
12910 | #error "MemMap.h, no valid memory mapping symbol defined."
| ^~~~~
In file included from ../llce/plugins/Lin_43_LLCE_TS_T40D11M10I0R0/src/Lin_43_LLCE.c:250:
C:/NXP/S32DS.3.4/S32DS/software/PlatformSDK_S32XX_2022_03/SW32_RTD_4_4_3_0_2_D2203/Base_TS_T40D11M30I2R0/include/Lin_43_LLCE_MemMap.h:12910:6: error: #error "MemMap.h, no valid memory mapping symbol defined."
12910 | #error "MemMap.h, no valid memory mapping symbol defined."
| ^~~~~
In file included from D:/FISKER/NXP/LLCE-files/LLCE-CAN-LIN-demo/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/source_code/llce/platform_common/firmware_loading/Llce_InterfaceLinTypes.h:56,
from D:/FISKER/NXP/LLCE-files/LLCE-CAN-LIN-demo/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/source_code/llce/Tresos_output/include/Lin_43_LLCE_Cfg.h:77,
from D:/FISKER/NXP/LLCE-files/LLCE-CAN-LIN-demo/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/source_code/llce/plugins/Lin_43_LLCE_TS_T40D11M10I0R0/include/Lin_43_LLCE.h:86,
from ../llce/plugins/Lin_43_LLCE_TS_T40D11M10I0R0/src/Lin_Llce_Irq.c:87:
D:/FISKER/NXP/LLCE-files/LLCE-CAN-LIN-demo/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/source_code/llce/platform_common/firmware_loading/StdRegMacros.h:73: warning: "REG_READ32" redefined
73 | #define REG_READ32 Reg_Read32
|
In file included from ../llce/plugins/Lin_43_LLCE_TS_T40D11M10I0R0/src/Lin_Llce.c:214:
C:/NXP/S32DS.3.4/S32DS/software/PlatformSDK_S32XX_2022_03/SW32_RTD_4_4_3_0_2_D2203/Base_TS_T40D11M30I2R0/include/Lin_43_LLCE_MemMap.h:12910:6: error: #error "MemMap.h, no valid memory mapping symbol defined."
12910 | #error "MemMap.h, no valid memory mapping symbol defined."
| ^~~~~
In file included from ../llce/plugins/Lin_43_LLCE_TS_T40D11M10I0R0/src/Lin_43_LLCE.c:267:
C:/NXP/S32DS.3.4/S32DS/software/PlatformSDK_S32XX_2022_03/SW32_RTD_4_4_3_0_2_D2203/Base_TS_T40D11M30I2R0/include/Lin_43_LLCE_MemMap.h:12910:6: error: #error "MemMap.h, no valid memory mapping symbol defined."
12910 | #error "MemMap.h, no valid memory mapping symbol defined."
| ^~~~~
In file included from C:/NXP/S32DS.3.4/S32DS/software/PlatformSDK_S32XX_2022_03/SW32_RTD_4_4_3_0_2_D2203/Base_TS_T40D11M30I2R0/header/S32G274A_SYSTICK.h:81,
from C:/Users/or00828752/workspaceS32DS.3.4/LLCE_CAN_LIN/LLCE_CAN_LIN_M7_0/generate/include/OsIf_Cfg.h:49,
from C:/NXP/S32DS.3.4/S32DS/software/PlatformSDK_S32XX_2022_03/SW32_RTD_4_4_3_0_2_D2203/Base_TS_T40D11M30I2R0/include/OsIf_Internal.h:46,
from C:/NXP/S32DS.3.4/S32DS/software/PlatformSDK_S32XX_2022_03/SW32_RTD_4_4_3_0_2_D2203/Base_TS_T40D11M30I2R0/include/Mcal.h:66,
from D:/FISKER/NXP/LLCE-files/LLCE-CAN-LIN-demo/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/source_code/llce/plugins/Lin_43_LLCE_TS_T40D11M10I0R0/include/Lin_43_LLCE.h:83,
from ../llce/plugins/Lin_43_LLCE_TS_T40D11M10I0R0/src/Lin_Llce_Irq.c:87:
C:/NXP/S32DS.3.4/S32DS/software/PlatformSDK_S32XX_2022_03/SW32_RTD_4_4_3_0_2_D2203/Base_TS_T40D11M30I2R0/header/S32G274A_COMMON.h:126: note: this is the location of the previous definition
126 | #define REG_READ32(address) (*(volatile uint32_t*)(address))
|
In file included from ../llce/plugins/Lin_43_LLCE_TS_T40D11M10I0R0/src/Lin_Llce.c:224:
C:/NXP/S32DS.3.4/S32DS/software/PlatformSDK_S32XX_2022_03/SW32_RTD_4_4_3_0_2_D2203/Base_TS_T40D11M30I2R0/include/Lin_43_LLCE_MemMap.h:12910:6: error: #error "MemMap.h, no valid memory mapping symbol defined."
12910 | #error "MemMap.h, no valid memory mapping symbol defined."
| ^~~~~
In file included from D:/FISKER/NXP/LLCE-files/LLCE-CAN-LIN-demo/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/source_code/llce/platform_common/firmware_loading/Llce_InterfaceLinTypes.h:56,
from D:/FISKER/NXP/LLCE-files/LLCE-CAN-LIN-demo/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/source_code/llce/Tresos_output/include/Lin_43_LLCE_Cfg.h:77,
from D:/FISKER/NXP/LLCE-files/LLCE-CAN-LIN-demo/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/source_code/llce/plugins/Lin_43_LLCE_TS_T40D11M10I0R0/include/Lin_43_LLCE.h:86,
from ../llce/plugins/Lin_43_LLCE_TS_T40D11M10I0R0/src/Lin_Llce_Irq.c:87:
D:/FISKER/NXP/LLCE-files/LLCE-CAN-LIN-demo/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/source_code/llce/platform_common/firmware_loading/StdRegMacros.h:82: warning: "REG_BIT_CLEAR32" redefined
82 | #define REG_BIT_CLEAR32 Reg_Bit_Clear32
|
In file included from ../llce/plugins/Lin_43_LLCE_TS_T40D11M10I0R0/src/Lin_Llce.c:236:
C:/NXP/S32DS.3.4/S32DS/software/PlatformSDK_S32XX_2022_03/SW32_RTD_4_4_3_0_2_D2203/Base_TS_T40D11M30I2R0/include/Lin_43_LLCE_MemMap.h:12910:6: error: #error "MemMap.h, no valid memory mapping symbol defined."
12910 | #error "MemMap.h, no valid memory mapping symbol defined."
| ^~~~~
In file included from C:/NXP/S32DS.3.4/S32DS/software/PlatformSDK_S32XX_2022_03/SW32_RTD_4_4_3_0_2_D2203/Base_TS_T40D11M30I2R0/header/S32G274A_SYSTICK.h:81,
from C:/Users/or00828752/workspaceS32DS.3.4/LLCE_CAN_LIN/LLCE_CAN_LIN_M7_0/generate/include/OsIf_Cfg.h:49,
from C:/NXP/S32DS.3.4/S32DS/software/PlatformSDK_S32XX_2022_03/SW32_RTD_4_4_3_0_2_D2203/Base_TS_T40D11M30I2R0/include/OsIf_Internal.h:46,
from C:/NXP/S32DS.3.4/S32DS/software/PlatformSDK_S32XX_2022_03/SW32_RTD_4_4_3_0_2_D2203/Base_TS_T40D11M30I2R0/include/Mcal.h:66,
from D:/FISKER/NXP/LLCE-files/LLCE-CAN-LIN-demo/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/source_code/llce/plugins/Lin_43_LLCE_TS_T40D11M10I0R0/include/Lin_43_LLCE.h:83,
from ../llce/plugins/Lin_43_LLCE_TS_T40D11M10I0R0/src/Lin_Llce_Irq.c:87:
C:/NXP/S32DS.3.4/S32DS/software/PlatformSDK_S32XX_2022_03/SW32_RTD_4_4_3_0_2_D2203/Base_TS_T40D11M30I2R0/header/S32G274A_COMMON.h:147: note: this is the location of the previous definition
147 | #define REG_BIT_CLEAR32(address, mask) ((*(volatile uint32_t*)(address))&= ((uint32_t)~((uint32_t)(mask))))
|
In file included from D:/FISKER/NXP/LLCE-files/LLCE-CAN-LIN-demo/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/source_code/llce/platform_common/firmware_loading/Llce_InterfaceLinTypes.h:56,
from D:/FISKER/NXP/LLCE-files/LLCE-CAN-LIN-demo/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/source_code/llce/Tresos_output/include/Lin_43_LLCE_Cfg.h:77,
from D:/FISKER/NXP/LLCE-files/LLCE-CAN-LIN-demo/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/source_code/llce/plugins/Lin_43_LLCE_TS_T40D11M10I0R0/include/Lin_43_LLCE.h:86,
from ../llce/plugins/Lin_43_LLCE_TS_T40D11M10I0R0/src/Lin_Llce_Irq.c:87:
D:/FISKER/NXP/LLCE-files/LLCE-CAN-LIN-demo/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/source_code/llce/platform_common/firmware_loading/StdRegMacros.h:88: warning: "REG_BIT_SET32" redefined
88 | #define REG_BIT_SET32 Reg_Bit_Set32
|
In file included from C:/NXP/S32DS.3.4/S32DS/software/PlatformSDK_S32XX_2022_03/SW32_RTD_4_4_3_0_2_D2203/Base_TS_T40D11M30I2R0/header/S32G274A_SYSTICK.h:81,
from C:/Users/or00828752/workspaceS32DS.3.4/LLCE_CAN_LIN/LLCE_CAN_LIN_M7_0/generate/include/OsIf_Cfg.h:49,
from C:/NXP/S32DS.3.4/S32DS/software/PlatformSDK_S32XX_2022_03/SW32_RTD_4_4_3_0_2_D2203/Base_TS_T40D11M30I2R0/include/OsIf_Internal.h:46,
from C:/NXP/S32DS.3.4/S32DS/software/PlatformSDK_S32XX_2022_03/SW32_RTD_4_4_3_0_2_D2203/Base_TS_T40D11M30I2R0/include/Mcal.h:66,
from D:/FISKER/NXP/LLCE-files/LLCE-CAN-LIN-demo/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/source_code/llce/plugins/Lin_43_LLCE_TS_T40D11M10I0R0/include/Lin_43_LLCE.h:83,
from ../llce/plugins/Lin_43_LLCE_TS_T40D11M10I0R0/src/Lin_Llce_Irq.c:87:
C:/NXP/S32DS.3.4/S32DS/software/PlatformSDK_S32XX_2022_03/SW32_RTD_4_4_3_0_2_D2203/Base_TS_T40D11M30I2R0/header/S32G274A_COMMON.h:140: note: this is the location of the previous definition
140 | #define REG_BIT_SET32(address, mask) ((*(volatile uint32_t*)(address))|= (uint32_t)(mask))
|
In file included from D:/FISKER/NXP/LLCE-files/LLCE-CAN-LIN-demo/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/source_code/llce/platform_common/firmware_loading/Llce_InterfaceLinTypes.h:56,
from D:/FISKER/NXP/LLCE-files/LLCE-CAN-LIN-demo/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/source_code/llce/Tresos_output/include/Lin_43_LLCE_Cfg.h:77,
from D:/FISKER/NXP/LLCE-files/LLCE-CAN-LIN-demo/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/source_code/llce/plugins/Lin_43_LLCE_TS_T40D11M10I0R0/include/Lin_43_LLCE.h:86,
from ../llce/plugins/Lin_43_LLCE_TS_T40D11M10I0R0/src/Lin_Llce_Irq.c:87:
D:/FISKER/NXP/LLCE-files/LLCE-CAN-LIN-demo/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/source_code/llce/platform_common/firmware_loading/StdRegMacros.h:91: warning:
C:/NXP/S32DS.3.4/S32DS/software/PlatformSDK_S32XX_2022_03/SW32_RTD_4_4_3_0_2_D2203/Base_TS_T40D11M30I2R0/header/S32G274A_SYSTICK.h:81,
C:/Users/or00828752/workspaceS32DS.3.4/LLCE_CAN_LIN/LLCE_CAN_LIN_M7_0/generate/include/OsIf_Cfg.h:49,
C:/NXP/S32DS.3.4/S32DS/software/PlatformSDK_S32XX_2022_03/SW32_RTD_4_4_3_0_2_D2203/Base_TS_T40D11M30I2R0/include/OsIf_Internal.h:46,
from C:/NXP/S32DS.3.4/S32DS/software/PlatformSDK_S32XX_2022_03/SW32_RTD_4_4_3_0_2_D2203/Base_TS_T40D11M30I2R0/include/Mcal.h:66,
from D:/FISKER/NXP/LLCE-files/LLCE-CAN-LIN-demo/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/source_code/llce/plugins/Lin_43_LLCE_TS_T40D11M10I0R0/include/Lin_43_LLCE.h:83,
from ../llce/plugins/Lin_43_LLCE_TS_T40D11M10I0R0/src/Lin_Llce_Irq.c:87:
C:/NXP/S32DS.3.4/S32DS/software/PlatformSDK_S32XX_2022_03/SW32_RTD_4_4_3_0_2_D2203/Base_TS_T40D11M30I2R0/header/S32G274A_COMMON.h:155: note: this is the location of the previous definition
make: *** [llce/plugins/EcuM_TS_T40D11M10I0R0/src/subdir.mk:20: llce/plugins/EcuM_TS_T40D11M10I0R0/src/EcuM.o] Error 1
In file included from D:/FISKER/NXP/LLCE-files/LLCE-CAN-LIN-demo/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/source_code/llce/plugins/Lin_43_LLCE_TS_T40D11M10I0R0/include/Lin_Llce.h:148,
from ../llce/plugins/Lin_43_LLCE_TS_T40D11M10I0R0/src/Lin_Llce_Irq.c:88:
C:/NXP/S32DS.3.4/S32DS/software/PlatformSDK_S32XX_2022_03/SW32_RTD_4_4_3_0_2_D2203/Base_TS_T40D11M30I2R0/include/Lin_43_LLCE_MemMap.h:12910:6: error: #error "MemMap.h, no valid memory mapping symbol defined."
In file included from D:/FISKER/NXP/LLCE-files/LLCE-CAN-LIN-demo/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/Integrate LLCE_CAN_LIN(MCAL Driver) to S32DS 3.4/source_code/llce/plugins/Lin_43_LLCE_TS_T40D11M10I0R0/include/Lin_Llce.h:159,
from ../llce/plugins/Lin_43_LLCE_TS_T40D11M10I0R0/src/Lin_Llce_Irq.c:88:
C:/NXP/S32DS.3.4/S32DS/software/PlatformSDK_S32XX_2022_03/SW32_RTD_4_4_3_0_2_D2203/Base_TS_T40D11M30I2R0/include/Lin_43_LLCE_MemMap.h:12910:6: error: #error "MemMap.h, no valid memory mapping symbol defined."
make: *** [llce/plugins/Lin_43_LLCE_TS_T40D11M10I0R0/src/subdir.mk:26: llce/plugins/Lin_43_LLCE_TS_T40D11M10I0R0/src/Lin_43_LLCE.o] Error 1
Can you give me some advice?Thanks!
Regards,
Oduguru_Ramakrishna.