blob: 74eee552360c51d1fffccdcce21420cd1d796f47 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#ifndef NET_SERIAL_PRIVATE_H
#define NET_SERIAL_PRIVATE_H
#include <net.h>
#include <transport.h>
#ifdef __cplusplus
extern "C"
{
#endif
void net_serial_on_received(const struct transport_event *t_ev,
const struct net_event *n_ev);
#ifdef __cplusplus
}
#endif
#endif /* NET_SERIAL_PRIVATE_H */
|