• Casting without warning
    Hi, I really like to compile all my code with the highest warning level and having the beautifull result of 0, errors and 0 warnings! The problem is that I need to access to functions as pointers...
  • cast?
    Does anybody know, how one have to cast an operation correctly? And is it necessary to tell the compiler that a constant is unsined long #define dword unsigned long unsigned char ucH; //hours unsigned...
  • How to Cast a void* ponter to a char without a warning?
    I am using the RTX mailbox and a lot of it's usage uses casting of the mailbox message to other types - a really quick and clever way to use it(thanks Keil :). When I cast a void * vPointer to a unigned...
  • error: "USB.C(268): error C213: left side of asn-op not an lvalue"
    hello i got the following error message after compilation: "USB.C(268): error C213: left side of asn-op not an lvalue" it seems to be not that difficult, but i'm running out of time with my project...
  • type casting?
    Hello, a question about how C166 handles type conversions: I have this: unsigned long c; unsigned char i, d if the following code is executed: c = 20403776; i = 0; d = 3; c += pow...