Hi @frankmuenzner7421,
You wrote that you were referring to the uart_pal_echo_S32k144 example.
But you don't use the PAL drivers in your project.
Your project:
danielmartynek_0-1691746497810.png
Example:
danielmartynek_1-1691746525902.png
Please refer to the lpuart_echo_s32k144 example instead and use these functions:
LPUART_DRV_Init(INST_LPUART1, &lpuart1_State, &lpuart1_InitConfig0);
LPUART_DRV_SendDataBlocking(INST_LPUART1, (uint8_t *)welcomeMsg, strlen(welcomeMsg), TIMEOUT);
You can access the documentation of the driver by right-clicking on the LPUART component.
danielmartynek_2-1691746749527.png
Regards,
Daniel