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

Does my embedded system have Floating Point Unit?

How do I find out if my embedded system has Floating Point Unit(FPU)? I'm using Keil tools.
Our target board uses NXP LPC2468 series Microcontroller ? Does this microcontroller have FPU? Looking in the microcontroller manual I couldn't find any information on FPU.

Parents
  • Thank you for answering this question.

    How do I manipulate floating-point numbers in ARM7 based target?

    I'm getting unsigned32 minutes over modbus. I need to convert to hours and send over USB
    to a PC application.

    i.e.

    Given: 5351 minutes
    My embedded application needs to: 5351/60 = 89.18333..
    Then, I would send 891 or 892 to PC application. They would divide by 10 and dispaly
    891 or 892 hours.

    What are my options ?

    1) Does Keil provide any floating point library.
    2) Usually floaing point math is usually eliminated in embedded systems. Instead, fixed-point math is used. Does Keil provide fixed point math routines?
    3) Use shift operations to achieve my goal?

    What would be best way to convert minutes to hours in my embedded application?

Reply
  • Thank you for answering this question.

    How do I manipulate floating-point numbers in ARM7 based target?

    I'm getting unsigned32 minutes over modbus. I need to convert to hours and send over USB
    to a PC application.

    i.e.

    Given: 5351 minutes
    My embedded application needs to: 5351/60 = 89.18333..
    Then, I would send 891 or 892 to PC application. They would divide by 10 and dispaly
    891 or 892 hours.

    What are my options ?

    1) Does Keil provide any floating point library.
    2) Usually floaing point math is usually eliminated in embedded systems. Instead, fixed-point math is used. Does Keil provide fixed point math routines?
    3) Use shift operations to achieve my goal?

    What would be best way to convert minutes to hours in my embedded application?

Children