Hi Michael Koller
When the Default ISR is called it means that you missed to put a handler in your project, for example, you enable a interrupt but you don't have a handler that attends this interrupt, or other case is that you try to use a module without enable the corresponding clock.
You can normally determinate what handler you missed by debugging your project step by step, and when you stuck in the default handler, you see what line is the one that caused the default handler. I see that you are using ksdk in your project, do you include a corresponding UART init? UART_DRV_Init(BOARD_DEBUG_UART_INSTANCE, &uartState, &uartConfig);
The UART module is set up here, and if you don't include it, it doesn't enable uart clock, neither the tx and rx and the baudrate is no defined.
Did you already check the example code that is included in ksdk? you could check the example code for UART and then clone it and change it as you need.
Hope this information coudl help you, please tell me if you have any other question.
Have a great day,
Jorge Alcala
-----------------------------------------------------------------------------------------------------------------------
Note: If this post answers your question, please click the Correct Answer button. Thank you!
-----------------------------------------------------------------------------------------------------------------------