When i try to do my glcd program in keil Mcb 1760with(Nxp LPC1768) MCU, I am Getting the following error --- C:\Keil_v5\ARM\PACK\Keil\LPC1700_DFP\2.1.0\RTE_Driver\SSP_LPC17xx.c(77): error: #35: #error directive: "SSP not configured in RTE_Device.h!" can any one help me to configure ssp in RTE Device .h
As it's come from a #error directive, it is probably of the form:
#if some-condition : : #else #error "SSP not configured in RTE_Device.h!" #endif
So looking at the condition should give you a clue as to what needs setting ...
Thank you Andrew neil....