This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

error: #35: "SSP not configured in RTE_Device.h!"

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

Parents
  • 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 ...

Reply
  • 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 ...

Children