• Please Advice
    I am in the same situation where I have a Stellaris EKK-LM3S9B96 Evaluation Kit, which uses the Keil uVision3 V3.90 in support of embedded software development for the Cortex M3 based Micro-controller...
  • Please Advice
    I am in the same situation where I have a Stellaris EKK-LM3S9B96 Evaluation Kit, which uses the Keil uVision3 V3.90 in support of embedded software development for the Cortex M3 based Micro-controller...
  • Can someone advice for pointers for void objects?
    void *MyConfigDetail; if (x) { ((TType1 *) MyConfigDetail) = DetailCacheBeans; } else { ((TType2 *) MyConfigDetail) = DetailailCacheHam; } </rpr> But I am unable to access the "MyConfigDetail" elements...
  • Can someone advice for pointers for void objects?
    void *MyConfigDetail; if (x) { ((TType1 *) MyConfigDetail) = DetailCacheBeans; } else { ((TType2 *) MyConfigDetail) = DetailailCacheHam; } </rpr> But I am unable to access the "MyConfigDetail" elements...
  • Pointer conversion / arithmetic
    Hello, I am trying to create an address (memory model huge) by adding an offset to a base address: void test (unsigned short offset) { unsigned char *adr; adr = 0x120000 + (long) adr; } ...