Adding StellarisWare to existing projects
If you wish to start using Stellaris Ware in your existing projects you will need to add include paths and libraries to your project. You will need to do this for each build configuration (for example, Debug or Release).
First, open the MCU Tools properties:
- select the project in Project Explorer
open the project properties with File->Properties
- in the Properties dialog:
- in the left-hand list, open "C/C++ Build" and select "Settings"
Next, for EACH CONFIGURATION edit the Compiler and Assembler include paths:
- on the right-hand side, under "MCU C Compiler", select "Directories"
- under Include paths, add "${workspace_loc:/}" to the list
- under "MCU Assembler" select "General"
- under Include paths, add "${workspace_loc:/}" to the list
Finally, edit the Linker librarys paths:
- under "MCU Linker", select "Libraries"
- in the Library search path, add entries for
- "${workspace_loc:/driverlib/Debug" (for driverlib)
- "${workspace_loc:/grlib/Debug" (if you are using grlib)
- "${workspace_loc:/usblib/Debug" (if you are using usblib)
- (where Debug should be subsituted for Debug or Release configuration)
