This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
Tool/software: Code Composer Studio
Using Code Composer studio 9.3, windows 10 OS.
When I use Resource Explorer to try and install MSP430ware it is not being installed. I get the message that I can watch the install progress using the task menu. That doesn't show up either.
What is necessary to get a successful installation and to invoke DriverLib?
Hello,
Were you trying to install the latest version (3.80.09.03)? I was able to get that version to install using Resource Explorer in CCSv9.3
Jan Hofland98 said:. I get the message that I can watch the install progress using the task menu. That doesn't show up either.
Note that to see the progress bar, you need to press the little circle icon next to the Filter:
Do you not see any messages there?
If you are unable to get it to install from Resource Explorer, you can download it separately from:
https://software-dl.ti.com/msp430/msp430_public_sw/mcu/msp430/MSP430Ware/latest/index_FDS.html
Thanks
ki
Hello Ki,
Thank you for your response. All it took was some patience to wait for the install. When I compile my program with the
#include <driverlib.h> or #include "driverlib.h"
the header file is not found. If I compile one of the example files it is found and the #include statement is exactly the same as in my file.What is necessary bo be able to use driverlib?
Jan Hofland98 said:#include <driverlib.h> or #include "driverlib.h"
the header file is not found. If I compile one of the example files it is found and the #include statement is exactly the same as in my file.What is necessary bo be able to use driverlib?
Make sure the path to driverlib.h is added to the list of include search paths for the project build properties.
Thanks
ki
Thank you for your response. It makes sense. Except that when I go to look at project build properties there is no list of include search paths or apparent means to add one.
Regards,
Jan
I had to resort to uninstalling all previous versions of CCS and installing CCS version 10. That gave me the ability to see the include paths and after some fumbling I was able to get driverlib.h recognized. It is noted that version 9.3 did not show the include paths used. The problem now is that the functions used from msp430ware are not being resolved in the linking process.
Jan Hofland98 said:It is noted that version 9.3 did not show the include paths used.
This should be available in the project properties. Below is a screenshot of my 9.3 installation:
Jan Hofland98 said:The problem now is that the functions used from msp430ware are not being resolved in the linking process.
Yes now check the linker options. Make sure the library that defines the symbols are included to the project
ki
I don't understand what library to include in linker options, and even how to get to the place to add the library. The goal is to be able to use the driverlib for MSP430FR2xx devices.
Jan, I would start a new thread in the MSP forum. The experts there can help with your latest issues.
Thanks
ki
Thank you for your response. I will consider the mechanism to add include file paths solved. I was also able to add the search path for the linker files but the build still fails with unresolved references to routines in the driverlib library.
Regards,
Jan
Jan Hofland98 said:I was also able to add the search path for the linker files but the build still fails with unresolved references to routines in the driverlib library.
Having a linker/library search path is not enough. A library itself needs to be specified. Anyway, mention the missing references on the MSP forum and the experts there will know what you are missing.
ki