Help on callback function

A

Ajay

Hi all,
Can you please give a good example of callback function.I
tried on google Search but could not found the good one.I am working in
embedded system so giving example in the same context would be
helpful.thanks in advance.Ajay
 
I

Ian Collins

Ajay said:
Hi all,
Can you please give a good example of callback function.I
tried on google Search but could not found the good one.I am working in
embedded system so giving example in the same context would be
helpful.thanks in advance.Ajay
Your embedded device might have a driver for an input device, that
driver might be wired to call a function provided by a higher layer when
it receives some data.

Something like:

void (*dataCallback)(const char*);

void registerDataCallback( void (*fn)(const char*) )
{
dataCallback = fn;
}

Then somewhere in the driver..

void passOnData(const char* data)
{
if( dataCallback )
{
dataCallback( data );
}
}
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
474,338
Messages
2,571,775
Members
48,575
Latest member
ameetparekh

Latest Threads

Top