Hello!
I was wondering if there is a simple way to create a project from a template in CCS4.
My source code structure is as follows:
// Let's call CodeRoot the root of my code tree.
- CodeRoot
- CodeRoot/Common // Processor independent.
- CodeRoot/Devices // Processor independent. Some devices, for example BMP150.h / .c for Bosch pressure sensor.
- CodeRoot/x16x // Folder including routines specific for the x16x series, for instance F1611, F169. Files examples: Uart.c/.h, Coprocessor.c/.h
- CodeRoot/x54x // Folder including routines specific for the x16x series, for instance F5438. Files examples: Uart.c/.h, Coprocessor.c/.h
- CodeRoot/SB169 // Folder specific to the SB169 board
- Etc.
One project usually includes 6 folders. Everytime, I create a project, I have to add all these folders one by one like this:
Repeat 6 times {
Project right-click -> new -> folder -> advanced -> brows -> [then a lengthy selection process from Windows root.]
Now everytime I add a new folder, I have to excludes all its files by default, and add only the parts I need.
}
After this, I have to add the include paths
Repeat 7 times {
Project right click -> properties -> C/C++build -> Include options -> click the add icon -> [then the same lengthy selection as above, from Windows root.]
}
Note: 7 times, because the path of the project is not included by default.
So I would be happy to have an option to simplify this work. Does anyone have a solution?
Thanks,
Pascal