• optimization with #pragma or using the option window
    Hello, I'm trying to optimize my code in time so I used the option window-->C/C++/ selected optimization level 3(-O3) and checked optimize for time. I'm using usb HID in the same project and unfortunately...
  • # pragma directive
    can any body will tell me when and where we can use #pragma directives in embedded 'C'?give me an idea with examples.
  • List of configuration options in .uvprojx and .uvoptx files
    Hello, as an author of CMake <> uVision Synchronizer ( github.com/.../cmake-uvision-syncer ) project, I am trying to find a list of all possible (of which mandatory) configuration options in uVision5...
  • "#pragma SRC" ->obj not generate
    I've added a "#pragma SRC" to see the asm code of my C file, and on the compilation, the obj file was not generated (and so the linking stopped with ERROR L210: I/O input File). Is it normal?
  • pragma pack structure in vxworks
    Hi, I am facing a problem in vxWorks. The problem is: I hava a pragma packed structure like below: struct C { float aaa; float bbb; } __attribute__((__packed__)) var3; struct B {...