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

lpc17xx_rtc.o error

Hi
I want to use rtc in cmsis but I faced with this error
would you please help me
linking...
flash_fs.axf: Error: L6218E: Undefined symbol CLKPWR_ConfigPPWR (referred from lpc17xx_rtc.o).
flash_fs.axf: Error: L6218E: Undefined symbol check_failed (referred from lpc17xx_rtc.o).

Parents
  • you are "building" the project. before building the entire project, Compile individual files. this helps you to check if there are any errors in individual C source files.

    Compile the lpc17xx_rtc.c file. You will see some errors. try to solve those errors.

    errors mean:
    CLKPWR_ConfigPPWR & check_failed symbols used in the file "lpc17xx_rtc.c" are not defined.

Reply
  • you are "building" the project. before building the entire project, Compile individual files. this helps you to check if there are any errors in individual C source files.

    Compile the lpc17xx_rtc.c file. You will see some errors. try to solve those errors.

    errors mean:
    CLKPWR_ConfigPPWR & check_failed symbols used in the file "lpc17xx_rtc.c" are not defined.

Children