This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

SysCtlDelay ()& SysCtlClockGet() function issue



Hi

i am trying to  interface SPI based LCD to TM4C1294 but  when i am executing SysCtlDelay ()& SysCtlClockGet()  functions it says couldnot find source file.

please help me to resolve me to this issue asap.

REgards

Nandish

  • Hi,
    The function SysCtlClockGet() is not anymore allowed for TM4C129x micros. Instead, the usual setting function returns an long representing your frequency or 0 if not succeeded to set it properly. See the driverlib code for more info...
    Also, the function SysCtlDelay depends on your tools, since it is written in assembler. If you use CCS, then in the predefined symbols tab of compiler configuration, you must add this define: ccs="ccs". Again, look into driverlib source code if you use another toolchain
  • thanks petrei i have resolved the issue.