This is an automated email from the ASF dual-hosted git repository. acassis pushed a change to branch SocketCAN in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git.
from 46ad645 mm: Add a bunch of assertions new 4a8c4b7 include/sys/socket.h: Add CAN socket family. new 0d95b19 include/netpacket/can.h: Add CAN socket family definitions new c92a8b0 net/: Add WIP initial framework for SocketCAN sockets. The 3 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "add" were already present in the repository and have only been added to this reference. Summary of changes: include/netpacket/can.h | 120 ++++++ include/sys/socket.h | 2 + net/Kconfig | 1 + net/Makefile | 1 + net/can/Kconfig | 26 ++ .../libc/machine/risc-v/rv64 => net/can}/Make.defs | 14 +- net/can/can.h | 154 ++++++++ net/can/can_conn.c | 225 +++++++++++ net/{netlink/netlink_sockif.c => can/can_sockif.c} | 423 ++++++++------------- net/net_initialize.c | 7 + net/socket/net_sockif.c | 7 + 11 files changed, 709 insertions(+), 271 deletions(-) create mode 100644 include/netpacket/can.h create mode 100644 net/can/Kconfig copy {libs/libc/machine/risc-v/rv64 => net/can}/Make.defs (81%) create mode 100644 net/can/can.h create mode 100644 net/can/can_conn.c copy net/{netlink/netlink_sockif.c => can/can_sockif.c} (65%)