I'm confused as to how to use the MCUXpresso and the Config Tools. I mean, what is the recommended workflow to create a project.
I just created a very simple project for an MK64F12 MCU and the project generator has just generated all the minimum files, (some seem to be placeholders for user code), to have a working project displaying "Hello World" using semihosting, (so no peripherals, nothing functional, just the clocks). Under the device folder, the project generator has generated the system_MK64F12.c and system_MK64F12.h pair of files that contain the necessary clock configurations for the MCU. The system_MK64F12.c file is the only one that contains actual useful auto-generated code that is the code that generates the clock configs.
Why do I need the Clock Configuration Tool if the project generates the necessary configurations for the clocks?
Also, how do the configuration tools relate/connect/work with the project generator? Do I just generate a project and then poke around in the pins/peripherals tools to configure my board/MCU?
I'm a bit confused