Hi,
I want to create a little sample application (for the purpose of experimenting with a UART interrupt) and for this,
- I've created a new "Kinetis SDK 1.x Project"
- called it "UARTtest" and selected the default location.
- I selected my MCU `MK64FN1M0xxx12`,
- selected `KSDK manaul selection` and
- provided the absolute path to my SDK directory: `/path/to/src/project/KSDK_1.3.0`.
- I also selected the GNU C Compiler and hit Finish.
- I changed the path to my default toolchain and confirmed that I can build the empty project.
- Now, I dragged `/path/to/project/KSDK_1.3.0/platform/drivers/src/uart/fsl_uart_irq.c` onto the Sources/ directory in my just created new project UARTtest. I selected to copy the file to the destination.
- And now my project won't build anymore, I keep getting
../Sources/fsl_uart_irq.c:31:10: fatal error: fsl_uart_driver.h: No such file or directory
Which is the first line of my copied file `fsl_uart_irq.c`.
How can I tell KDS to look for the header?
I already provided it with the path to the SDK directory.