LPC1768 to floating point processor

Thread Starter

Dritech

Joined Sep 21, 2011
901
Hi all,

I am currently using the LPC1768 development board for a project. Since I am using a lot of floating point calculations, I wish to replace the MCU with a floating point processor. Is there an equivalent development board for the LPC1768 which have a floating point ALU?
Is it possible to use the same MBED code if I change the MCU? and are there any advantages of using a fixed point processor when compared to a fixed point processor?

Any help would be highly appreciated.
 

dannyf

Joined Sep 13, 2015
2,197
Is there an equivalent development board for the LPC1768 which have a floating point ALU?
Your best luck is likely with NXP: floating point units don't show up until CM4 so I would start with NXP CM4 with the same packaging as LPC1768.

BTW, those are single precision fpus. they suck wind if your code uses double precision floating point math.

Many times, it is much better to use fixed point math and CMSIS provides a very nice package for that, with cross-platform (=CM0/1/3/4) compatibility.
 
Top