Hi,
I'm Using LM3S2965 Controller, now i have to shift to TIVA TM4C1231H6PZ Controller.
I'm using CCS Version: 6.0.0.00156
I Started porting by following Migrating Software Projects from StellarisWare to TivaWare Appnote, replaced the function names when i start build i"m getting following errors
Description Resource Path Location Type #20 identifier "bool" is undefined external location: C:\ti\TivaWare_C_Series-2.0.1.11577\driverlib\adc.h C/C++ Problem #20 identifier "int32_t" is undefined .external location: C:\ti\TivaWare_C_Series-2.0.1.11577\driverlib\interrupt.h C/C++ Problem #20 identifier "uint32_t" is undefined, external location: C:\ti\TivaWare_C_Series-2.0.1.11577\driverlib\gpio.h C/C++ Problem #20 identifier "uint8_t" is undefined external location: C:\ti\TivaWare_C_Series-2.0.1.11577\driverlib\gpio.h C/C++ Problem
in gpio.h,adc.h,sysctl.h,interrupt.h
i have included following header files in my code
#include "inc\hw_ints.h
#include "inc\hw_memmap.h"
#include "inc\hw_types.h"
#include "driverlib\interrupt.h"
#include "driverlib\sysctl.h"
#include "driverlib\gpio.h"
#include <stdint.h>
#include <stdbool.h>
Please let me know what i'm missing to include and guide me through.
Thank You