Hi,
We are developing one machine control application on AM3359 ICE. This is basically a POC kind of project we are working on. Following is brief description about the issue
I am assigning a function pointer in a structure as
void(*function)(void *). But when I assign this pointer to any of the function e.g. ptr->function = &configure_232, I do get a warning
"#515-D a value of type "void (*)(ACTION_OBJECT *)" cannot be assigned to an entity of type "void (*)(void *)" general_functions.c /CTS_Panda/source line 977 C/C++ Problem
This warning is currently not stopping the program from execution of the appropriate function. But can anybody why this warning is coming? Is there any compiler setting that I need to do to remove this warning?