Hi everyone!
I came here with a doubt that I think you can help me. I am using these:
FRDM-K64F;
KDS 3.2;
KSDK 1.3;
MQX provided by KSDK;
At begin I created a project using KSDK-Project-Generator, and now I need to include in the project a shell in the debugging UART, a USB HOST MSD and TCP/IP protocol in the Ethernet port. My doubt is how include those files in the project?
Thanks for the help!
Hi Clecio Jung,
I apologize for the late response.
I recommend you these steps:
For work with USB HOST MSD:
The easiest way, how to start with USB HOST MSD is clone existing example with Project Generator Tool 2.2 KSDK Project Generator Tool
The project is created with all RTOS configurations.
Or you can do it by yourself according to the guide USB Host Project with KSDK 1.3 and Processor Expert
For adding RTCS to your project:
is needed to have built RTCS library (lib_rtcs.a) and link it to your existing project.
Please, go to Project -> Properties -> C/C++ Build -> Settings -> Cross ARM C++ Linker -> Libraries
and set "${KSDK_PATH}/middleware/tcpip/rtcs/lib/frdmk64f.kds/debug/rtcs" in Library search path (-L)
and _rtcs in Libraries (-l)
And set the same path "${KSDK_PATH}/middleware/tcpip/rtcs/lib/frdmk64f.kds/debug/rtcs" also for Cross ARM C Compiler -> Includes
I hope this helps you.
Best Regards,
Iva
Thank you,
you help me a lot!
Regards