Hi, I'm interested about programming my FRDM board, but I ran into a problem. I downloaded KSDK 1.3 and tried to make a new project manually. The demo projects that are included in the SDK use platform library. My question is that what if I would like to import headers and sources manually? What are the pre-written libraries used for? My notion was to include the essential files, like: startup, CMSIS, hal components(not peripheral drivers), system services, board specific headers.
My further questions are:
- Should I include the board components or the hal layer arranged everything? (pin mux, clock sources, etc.)
- Can I make my project without including every headers? (f.e.: osa)
- Is there an example for bare metal programming with KDS + KSDK + HAL without PE and libraries?
Hi, Darnai,
If you plan to develop project and call SDK function, I suggest you develop project based on SDK. If you develop project without SDK and you include all the head file and *.c file manually, it is troublesome, but okay.
If you develop project based on SDK, you can call the SDK driver, the SDK function body is found as a library. If you use CMSIS, you can call the CMSIS function, the CMSIS function body is found as a library. All the library can be dragged to KDS tools before compiling, so it is easy.
Hope it can help you.
BR
Xiangjun Rong