Tool/software: Code Composer Studio
Hello,
I have a question regarding the code composer studio.
I am using math functions like "pow" and "exp". These functions are provided by the library called "rts430x[...]...lib", causing, for example for pow, 11kB of Sram. Because it is too much for my application, I created my own lib with an implementation of "pow" and "exp". If I include that lib into my project and import my custom library, i can still see that "rts430x[...]...lib" is being used.
Could you please let me know how i can prevetn Code Composer studio from using the "rts430x[...]...lib" liibraries?
Kind Regards
Matthias
Here is my very simple main.c content:
#include <msp430.h>
#include "custom_math.h"
/**
* main.c
*/
int main(void)
{
WDTCTL = WDTPW | WDTHOLD; // stop watchdog timer
float in = 23.6;
float res = 0.0;
res = pow(in, 5.5);
return 0;
}
My Memory Allocation View
Code Composer Studio information