Zephyr API Documentation
2.7.0-rc2
A Scalable Open Source RTOS
|
Event callback structure. More...
#include <ipc_service.h>
Data Fields | |
void(* | bound )(void *priv) |
Bind was successful. More... | |
void(* | received )(const void *data, size_t len, void *priv) |
New packet arrived. More... | |
void(* | error )(const char *message, void *priv) |
An error occurred. More... | |
Event callback structure.
It is registered during endpoint registration. This structure is part of the endpoint configuration.
An error occurred.
message | Error message. |
priv | Private user data. |
New packet arrived.
data | Pointer to data buffer. |
len | Length of data. |
priv | Private user data. |