Re: Math lib inclusion in BSP not required if CAN drivers are considered

2015-10-01 Thread Isaac Gutekunst
Hi Pavel, Thanks for the detailed reply. I guess you aren't as "horribly out of time" as you said, or perhaps are no even more out of time :) We will definitely take a good look at the LinCAN source for baud rate calculations. The more I think about it, the more I think it's worth to port

Re: Math lib inclusion in BSP not required if CAN drivers are considered

2015-10-01 Thread sudarshan.rajagopalan
+1. - Sudarshan On 2015-10-01 11:06, Isaac Gutekunst wrote: Hi Pavel, Thanks for the detailed reply. I guess you aren't as "horribly out of time" as you said, or perhaps are no even more out of time :) We will definitely take a good look at the LinCAN source for baud rate calculations.

Re: Math lib inclusion in BSP not required if CAN drivers are considered

2015-09-30 Thread Pavel Pisa
Hello Sudarshan, On Friday 25 of September 2015 19:13:53 sudarshan.rajagopalan wrote: > On 2015-09-25 12:21, Daniel Gutson wrote: > > El 25/9/2015 13:17, "sudarshan.rajagopalan" > > > > escribió: > > > On 2015-09-25 11:06, Daniel Gutson wrote: > > >> On Thu,

Re: Math lib inclusion in BSP

2015-09-25 Thread Daniel Gutson
On Thu, Sep 24, 2015 at 4:49 PM, sudarshan.rajagopalan wrote: > Hey all, > > We are developing a new BSP that uses math.h in few of the BSP files. I do May I ask why do you need floating point operations in a kernel? At least, what sort of operations and why not

Re: Math lib inclusion in BSP

2015-09-25 Thread Daniel Gutson
El 25/9/2015 13:17, "sudarshan.rajagopalan" escribió: > > On 2015-09-25 11:06, Daniel Gutson wrote: >> >> On Thu, Sep 24, 2015 at 4:49 PM, sudarshan.rajagopalan >> wrote: >>> >>> Hey all, >>> >>> We are developing a new BSP that

Re: Math lib inclusion in BSP

2015-09-25 Thread sudarshan.rajagopalan
On 2015-09-25 11:06, Daniel Gutson wrote: On Thu, Sep 24, 2015 at 4:49 PM, sudarshan.rajagopalan wrote: Hey all, We are developing a new BSP that uses math.h in few of the BSP files. I do May I ask why do you need floating point operations in a kernel? At

Re: Math lib inclusion in BSP

2015-09-25 Thread sudarshan.rajagopalan
On 2015-09-25 12:21, Daniel Gutson wrote: El 25/9/2015 13:17, "sudarshan.rajagopalan" escribió: > > On 2015-09-25 11:06, Daniel Gutson wrote: >> >> On Thu, Sep 24, 2015 at 4:49 PM, sudarshan.rajagopalan >> wrote: >>> >>>

Math lib inclusion in BSP

2015-09-24 Thread sudarshan.rajagopalan
Hey all, We are developing a new BSP that uses math.h in few of the BSP files. I do understand that the math library functions are not part of standard C library and has to be linked using "-lm". So I include "LD_LIBS += -lm" in the custom .cgf config file but this doesn't seem to work. I

Re: Math lib inclusion in BSP

2015-09-24 Thread Sebastian Huber
On 24/09/15 21:49, sudarshan.rajagopalan wrote: We are developing a new BSP that uses math.h in few of the BSP files. I do understand that the math library functions are not part of standard C library and has to be linked using "-lm". So I include "LD_LIBS += -lm" in the custom .cgf

Re: Math lib inclusion in BSP

2015-09-24 Thread Gedare Bloom
We usually link it later in the Makefile, e.g. see samples/paranoia I believe On Thu, Sep 24, 2015 at 3:49 PM, sudarshan.rajagopalan wrote: > Hey all, > > We are developing a new BSP that uses math.h in few of the BSP files. I do > understand that the math