Other Parts Discussed in Thread: TM4C123GH6PM
I'm posting this as a last resort after endlessly searching in all forums and posts .
I'm using the Tiva C Series TM4C123GH6PM launchpad and am trying to use SSI and UART on it .
The code seems irrelevant to this post as the problems I'm facing are compile time errors .
For eg.
GPIO_PA2_SSI0CLK undefined
GPIO_PA0_U0RX undefined ,etc .
For the project , I have included the following :-
#include <stdbool.h>
#include <stdint.h>
#include "inc/hw_memmap.h"
#include "driverlib/gpio.h"
#include "driverlib/pin_map.h"
#include "driverlib/ssi.h"
#include "driverlib/sysctl.h"
#include "driverlib/uart.h"
#include "utils/uartstdio.h"
#include "inc/hw_types.h"
#include "inc/hw_gpio.h"
#include "inc/hw_ssi.h"
#include "inc/tm4c123gh6pm.h"
I have linked the driverlib.lib to my project .
I have mentioned the TivaWare directory in the include options and in the Build Variables .
I have mentioned the directory of driverlib.lib in the Files search paths .
I have added startup_ccs.c
Desperately require help .
The code that I am compiling is the SPI_master example in the Tivaware examples .