HI,
Taking HelloIPC as reference I Created a Client-Server Scenario where each Client provides as well as requires and same goes for Server, i.e. both are Server and Client at the same time.
Here’s a look at my .cdef…
[code]sources:
{
TempSensor.c
}
provides:
{
api:
{
SensorMonitor = SensorMonitor.api
}
}
requires:
{
api:
{
update = update.api
}
}[/code]
and similar code for the other .cdef…
I’ve even added the respective APIs. But this is not working.
Has anybody faced similar issues ? Any Solution Please…