Running under Win7, last installed Stellaris software and Code Composer in October, 2012, learning and building projects on a TI LaunchPad for LM4F120H5QR.
I've had a few learning curve issues, particularly related to properly creating and configuring a new Project, but have managed, initially by copying existing Example projects and working from there. Yesterday, when making a minor source code modification to a project I'm building (this is after many successful iterations), I was unable to complete a Build. The error(s) thrown were unresolved library calls to GPIOPinTypeGPIOInput(), GPIOPinWrite(), SysCtlDelay(), etc., all of which I had been using with no problems. More specifically, the driver library file could not be found:
error #10008-D: cannot find file "C:/StellarisWare/boards/ek-lm4f120xl/project0/ccs/../../../../driverlib/ccs-cm4f/Debug/driverlib-cm4f.lib"
Sure enough, there is no such file under /driverlib - but it obviously had been there only minutes before.
I started a Build All, and got similar errors from all other examples and my own projects that were in the Project Explorer.
I created a new project, a minimum empty one with only a skeleton main.c That compiled and linked fine, but of course had no external references.
Pasted in my entire source, main() and various functions, and did another Build. This time, if immediately failed, unable to open my first #include,
#include "inc/hw_types.h"
Rebooted, thinking perhaps some or all environment variables had gotten trashed, but to no avail. The original project still compiles (does in fact locate the includes), but still fails in linker. The new "test" project still fails to even open the include(s).
Should I re-install CCS from my original download? Or can anyone think of something I might have "un-set"?
Thanks!
Dave