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

Compile Error

Hello!
I'm using the P89LPC935FA microcontroller. I have written a program which involves calculation in floating numbers. While trying to compile it, I got a error message which I haven't been able to resolve. Below is the message:
FATAL ERROR L210: I/O ERROR ON INPUT FILE:
EXCEPTION 0021H: PATH OR FILE NOT FOUND
FILE: C:\KEIL\C51\LIB\C51FPS.LIB
Target not created.
Could you please help.

Ade

Parents
  • a guess:
    you are using the eval.
    Floating point is not included in the eval.

    Also, waaaay too many '51 apps are done with floating point, for which the '51 is singularily a bad choice.

    Use scaling instead of floating point, you will run faster and cheaper.

    Erik

Reply
  • a guess:
    you are using the eval.
    Floating point is not included in the eval.

    Also, waaaay too many '51 apps are done with floating point, for which the '51 is singularily a bad choice.

    Use scaling instead of floating point, you will run faster and cheaper.

    Erik

Children