Hello,
I have written a C program that reads from a CSV file and generates a .h header file.
I want to compile this C code as a pre-build step and include the generated .h file in the code composer studio project build process that generates the binary to be flashed on MSP430.
I know this can be done under project properties -> build -> steps -> pre build
What I'm not sure of is how to write the command.
Basically I'm looking to do something as so :
gcc csv_to_header.c -o csv_to_header
./csv_to_header
Please advise how to do this as a pre build step. Any resources available for this? I could find some info on TI, but it's mostly high level stuff and doesn't give the details of command to be used.
TIA.