• best method to differentiate usb
    Hi all, Which is the best method to differentiate mass storage device like USB. Is there any other method other than using VendorId and ProductId of Usb?
  • LPC2148 Reset source Identification
    hi, I need to find out whether the LPC2148 is reset due to POR(power-on reset) or by the RESET pin becoming low. As per the user manual UM10139, I read about the RESET SOURCE IDENTIFICATION REGISTER...
  • Alternate method of using "sfr" and "sbit" for Misra Compliance
    I want to change my code along with Compiler library header files to have Misra-C Compliance. For the following code, there is an Misra Violation saying that "There shall be no definitions of objects...
  • Generic Pointer: Memory Type Identification
    Hi, how can I identify a memory type of any generic pointer in C51 code? Thanks.
  • accessing array of ptr in the structures
    i've declared a structure as typedef struct elem { int a; void *b[20]; }e; how can i access the array of (void) pointer inside a structure??? e.b ??? - is this correct manner of accessing...