Lines Matching full:can
1 .. zephyr:code-sample:: socket-can
5 Send and receive raw CAN frames using BSD sockets API.
10 The socket CAN sample is a server/client application that sends and receives
11 raw CAN frames using BSD socket API.
15 * Setup function which creates a CAN socket, binds it to a CAN network
16 interface, and then installs a CAN filter to the socket so that the
17 application can receive CAN frames.
18 * Receive function which starts to listen the CAN socket and prints
19 information about the CAN frames.
20 * Send function which starts to send raw CAN frames to the bus.
22 The source code for this sample application can be found at:
23 :zephyr_file:`samples/net/sockets/can`.
34 Build the socket CAN sample application like this:
37 :zephyr-app: samples/net/sockets/can
46 :zephyr-app: samples/net/sockets/can