Hello Naveen, Ahh, just what I suspected. You are including links to TivaWare folder for "inc", "driverlib", and "utils" but that is not the correct method. You should link only the main TivaWare folder. The call for #include "inc/hw_memmap.h" is expecting only the main TivaWare folder. That was it goes to C:\ti\TivaWare_C_Series-2.1.4.178 and appends /inc/hw_memmap.h to it, to create the completed directory of C:\ti\TivaWare_C_Series-2.1.4.178/inc/hw_memmap.h However, the way you have it setup, it will look for the following and not find it: C:\ti\TivaWare_C_Series-2.1.4.178\inc/inc/hw_memmap.h In order words, you need to delete the 3 folder links for TivaWare in the Include Options and replace them with just C:\ti\TivaWare_C_Series-2.1.4.178 Please make the recommended adjustment and see if your project compiles.
↧