You may encounter a build error: 'unresolved symbols remain'. This may be because you have not installed CCS along with SimpleLink SDK properly for the MSP432. To fix this, here a solution that you can try, courtesy of my Professors:
Code Composer Studio: unresolved symbols remain
1.5k Views Asked by REN At
1
There are 1 best solutions below
Related Questions in C
- Passing arguments to main in C using Eclipse
- kernel module does not print packet info
- error C2016 (C requires that a struct or union has at least one member) and structs typedefs
- Drawing with ncurses, sockets and fork
- How to catch delay-import dll errors (missing dll or symbol) in MinGW(-w64)?
- Configured TTL for A record(s) backing CNAME records
- Allocating memory for pointers inside structures in functions
- Finding articulation point of undirected graph by DFS
- C first fgets() is being skipped while the second runs
- C std library don't appear to be linked in object file
Related Questions in MSP430
- Passing arguments to main in C using Eclipse
- kernel module does not print packet info
- error C2016 (C requires that a struct or union has at least one member) and structs typedefs
- Drawing with ncurses, sockets and fork
- How to catch delay-import dll errors (missing dll or symbol) in MinGW(-w64)?
- Configured TTL for A record(s) backing CNAME records
- Allocating memory for pointers inside structures in functions
- Finding articulation point of undirected graph by DFS
- C first fgets() is being skipped while the second runs
- C std library don't appear to be linked in object file
Related Questions in CODE-COMPOSER
- Passing arguments to main in C using Eclipse
- kernel module does not print packet info
- error C2016 (C requires that a struct or union has at least one member) and structs typedefs
- Drawing with ncurses, sockets and fork
- How to catch delay-import dll errors (missing dll or symbol) in MinGW(-w64)?
- Configured TTL for A record(s) backing CNAME records
- Allocating memory for pointers inside structures in functions
- Finding articulation point of undirected graph by DFS
- C first fgets() is being skipped while the second runs
- C std library don't appear to be linked in object file
Related Questions in MSP432
- Passing arguments to main in C using Eclipse
- kernel module does not print packet info
- error C2016 (C requires that a struct or union has at least one member) and structs typedefs
- Drawing with ncurses, sockets and fork
- How to catch delay-import dll errors (missing dll or symbol) in MinGW(-w64)?
- Configured TTL for A record(s) backing CNAME records
- Allocating memory for pointers inside structures in functions
- Finding articulation point of undirected graph by DFS
- C first fgets() is being skipped while the second runs
- C std library don't appear to be linked in object file
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular # Hahtags
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Credits: Prof Ian Vince McLoughlin, Prof Muhamed Fauzi bin Abbas
Install CCS (I used the latest, CCS10.4.0.00006_win64.zip [1.15Gbytes]).
Unzip, then do a custom install, and select the MSP432 tools. Default location. You can get it from: https://www.ti.com/tool/CCSTUDIO
Meanwhile, download the installer named; simplelink_msp432p4_sdk_3_40_01_02.exe [232 MBytes] from: https://www.ti.com/tool/download/SIMPLELINK-MSP432-SDK
Once CCS has been installed, launch it and make sure it is running fine. You might need to reboot your computer. Once this works OK, continue.
Now tun the simplelink installer .exe from step 2. Just accept all of the default options.
Once it has finished, run CCS (or restart CCS if it is already running using File -> Restart).
Once CCS is running, after some time, it will pop up a window near the bottom of the screen saying "Updates Available". Click on that window and allow it to do the default updates (this will auto-update three components).
Wait for that to complete.
In CCS, launch View -> Resource Explorer Offline.
Click the red crossed-out CLOUD icon (there are 3 icons, the cloud, a home icon and an eye icon). Wait for it to sync to the cloud. It can be slow.
Once the page reloads, scroll down and install the offline package (in one of the rectangular boxes) called Arm code generation tools - compiler. Use the pull-down option to choose version 20.2.4 and click the install icon next to that box.
Wait for this to install. It shouldn't take long.
Once that has been installed, restart CCS.
Now go to View -> Getting started. Click on "Import Project" and Browse the search-directory until you get to; C:/ti/simplelink_msp432p4_sdk_3_40_01_02/examples/nortos/MSP_EXP432P401R/driverlib/empty
Click "Select Folder"
It will show you a Discovered Project. Tick the box next to that to select that project and then press "Finish". This will import an empty DriverLib project into your workspace. You may rename this project and this becomes your own project.
If there is any problem at this stage, restart CCS and go back to clicking on the red crossed-out cloud (one time it failed for me and I needed to repeat that step).
Go to View -> Project Explorer and you should see it there. You can click on main.c and then try to compile it (the hammer icon in the toolbar) and debug it (the bug icon in the toolbar). If your MSP432 is connected to your computer it will download and execute.