Hi @felix1,
I apologize for the late response. I was able to reproduce the 1 second period callback for the Send() function in UART. I found it easier to start with the timer example, and then add in the LPUART peripherals and drivers.
Please, create a new freertos_swtimer, open Config Tools from the project explorer, and add in the uart drivers. (You will also need to manually add the "fsl_lpuart_freertos" inside the "freertos" folder on the LPUART example.
After this, copy all the initialization and variables needed for the send function (Definitions, Prototypes and Code).
Add "NVIC_SetPriority(LPUART1_IRQn, 5);", and add the UART task to the scheduler for the initialization.
I was able to reproduce it by removing all but the initialization in the "uart_task" function, and just adding "LPUART_RTOS_Send(&handle, (uint8_t *)to_send, strlen(to_send));" inside the SwTimerCallback function to avoid the Receive function inside the example.
I apologize again for the tardy response, but I hope you find this helpful!