Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

SignUp Now!

Recent content by Akash

  1. A

    {URGENT } Calculation of SRAM

    Hi All, I'm compiling using LLVM and Building using Scons. I'm able to get text/data/bss/ROM size from the map file, but need to know more on SRAM. I wanted to calculate the SRAM size. Any way of doing it?
  2. A

    C Find the full path of the linked header

    I have a number of c files and header files and i'm using scons to build . I wanted to see the exact path of a header file (from where it is linking) as the code organisation is big. Any way to find the full path from which it is linking. Same applies to make system also?
  3. A

    C URGENT - Array bound error

    Hi , I'm working on a code, and I'm using klocwork for static analysis, which is suspicious of array bound error. ptr->array_temps[ptr->numberInPool++] = primary->array_temp : loop numberInPool is increased regardless of the loop , so if this should be protected, if yes, how? void...
  4. A

    C Realising Multiple endpoints using 2 endpoints

    Hi , I'm working on an architecture where, we have only 2 hardcoded endpoints , with which we have to realise the below endpoints , is there any logic that i can use? Old architecture (USB endpoints) : #define end_point_int_out (0x81) /*!< Interrupt ToHost */ #define end_point_bulk_in...
  5. A

    Help needed in optimisation

    Hi Guys, Working on a SW for New architecture , so wanted to make smaller things more optimal. One such thing is I'm looking for is removal of frequent #ifdef s, Is there any way to minimise the usage of define/make it more generic. Scenario: I have multiple files, which has either #ifdef X...
Back
Top Bottom