• # 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.
  • #pragma asm directive
    using #pragma asm directive and generating source file is not been able to generate C_Start referance. I know that I'll have to add c51s.lib file. But in UV3 How do I add this lib file? Docs avaible...
  • Check of NVM size by #if directive
    I've done the code below to control the size of my NVM during compile time: . . . typedef enum { NvmAddrStart = 0x0000 ,NvmAddrFactory = (NvmAddrStart) ,NvmAddrFactoryEnd = (NvmAddrFactory...
  • #pragma iv
    Hello: I have a project where I use #pragma iv(0x600), with Silabs processor 8051F385. This processor indicates that interrupt 8 at 0x43 is "special" and when generating HEX file, the address is...
  • Scope of #pragma
    If I declare: #pragma optimize(0) void func1(void) ... void func2(void) ... void func3(void) ... Does this apply only for func1 or for all subsequent functions (i.e. func2,func3,etc)?...