Hello
I'm new to the launchpad and as a newbie I'm trying to execute the example codes given at " ti\TivaWare_C_Series-2.1.1.71\examples\boards\ek-tm4c1294xl ".
The code " blinky " worked fine.
but when I started executing " Hello " , build operation is successful but when I downloaded the code onto board nothing is coming on the serial monitor.
I'm using Keil IDE.
Later I found that " tm4c1294ncpdt.h " is not included in the code. only the below mentioned files are include.
#include <stdint.h>
#include <stdbool.h>
#include "inc/hw_ints.h"
#include "inc/hw_memmap.h"
#include "driverlib/debug.h"
#include "driverlib/gpio.h"
#include "driverlib/interrupt.h"
#include "driverlib/pin_map.h"
#include "driverlib/rom.h"
#include "driverlib/rom_map.h"
#include "driverlib/sysctl.h"
#include "driverlib/uart.h"
Is it not necessary to include "tm4c1294ncpdt.h" ?
but when I included this files lots of errors and warnings came out.
Could you please explain how I can execute the example codes ?