I've recently started working with a Tiva C dev board and CCS6. I'm trying to create a library to use from different projects. I've taken the following steps:
- I've created a new CCS project and designated it as a Static Library.
- In the project that I wish to reference my library files from, I add the library project to the include path for both the ARM Compiler and ARM Linker.
- I then #include the appropriate headers but when I build, all functions defined in the libraries generate unsolved symbol errors.
What critical piece am I missing? I'm using other includes from the Tivaware libs using a variable path definition with no problems.
Any suggestions would be greatly appreciated.