• netIP_aton fucntion not working (TCP CLIENT)
    Hello I am using stm32 discovery board and trying to implement a TCP Client application.In the following code, I am using netIP_aton function to convert the network address in binary.But the function...
  • C51: Pointer to array type
    I have defined a type for objects we use. The details of the type should not be relevant for the users of the type, so I am "hiding" it behind a typedef. As it happens, this type is currently implemented...
  • array of pointers to arrays of pointers to string
    Yes, the real problem is, I would like to write an easy to switch, multilingual menu. And I imagine, an array like that should work. But there seems to be some brain blocking in 1. How to define and...
  • array of pointers
    Want to translate the following code (C51) to ARM const char code *txt_unidade_forca[] = { "gf ", "kgf", "N ", "lbf", NULL}; In this case both texts and pointers are placed in CODE. How to do...
  • Pointer to 2D array
    On Keil C51 compiler using an already posted solution I get the following warning Mail.c(256): warning C182: pointer to different objects on "pointer = &tab1;" int (*pointer)[100][280]; ...