├── .gitignore ├── Makefile ├── README.md ├── include ├── CANAdapter.h ├── CANFrame.h ├── CANFrameParser.h ├── SLCAN.h ├── SocketCAN.h └── Vector │ ├── CANalyzer │ └── LoggingFile.h │ └── XLDriverLibrary │ └── VectorCANAdapter.h ├── lib ├── .gitignore └── pcan-basic.mk ├── mingw.mk ├── src ├── CANAdapter.cpp ├── CANFrameParser.cpp ├── SLCAN.cpp ├── SocketCAN.cpp └── Vector │ ├── CANalyzer │ └── LoggingFile.cpp │ └── XLDriverLibrary │ └── VectorCANAdapter.cpp ├── test └── test.cpp └── windows.mk /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/libcan/HEAD/.gitignore -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/libcan/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/libcan/HEAD/README.md -------------------------------------------------------------------------------- /include/CANAdapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/libcan/HEAD/include/CANAdapter.h -------------------------------------------------------------------------------- /include/CANFrame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/libcan/HEAD/include/CANFrame.h -------------------------------------------------------------------------------- /include/CANFrameParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/libcan/HEAD/include/CANFrameParser.h -------------------------------------------------------------------------------- /include/SLCAN.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/libcan/HEAD/include/SLCAN.h -------------------------------------------------------------------------------- /include/SocketCAN.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/libcan/HEAD/include/SocketCAN.h -------------------------------------------------------------------------------- /include/Vector/CANalyzer/LoggingFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/libcan/HEAD/include/Vector/CANalyzer/LoggingFile.h -------------------------------------------------------------------------------- /include/Vector/XLDriverLibrary/VectorCANAdapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/libcan/HEAD/include/Vector/XLDriverLibrary/VectorCANAdapter.h -------------------------------------------------------------------------------- /lib/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | # Third-party non-free libraries 3 | pcan-basic 4 | 5 | 6 | -------------------------------------------------------------------------------- /lib/pcan-basic.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/libcan/HEAD/lib/pcan-basic.mk -------------------------------------------------------------------------------- /mingw.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/libcan/HEAD/mingw.mk -------------------------------------------------------------------------------- /src/CANAdapter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/libcan/HEAD/src/CANAdapter.cpp -------------------------------------------------------------------------------- /src/CANFrameParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/libcan/HEAD/src/CANFrameParser.cpp -------------------------------------------------------------------------------- /src/SLCAN.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/libcan/HEAD/src/SLCAN.cpp -------------------------------------------------------------------------------- /src/SocketCAN.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/libcan/HEAD/src/SocketCAN.cpp -------------------------------------------------------------------------------- /src/Vector/CANalyzer/LoggingFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/libcan/HEAD/src/Vector/CANalyzer/LoggingFile.cpp -------------------------------------------------------------------------------- /src/Vector/XLDriverLibrary/VectorCANAdapter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/libcan/HEAD/src/Vector/XLDriverLibrary/VectorCANAdapter.cpp -------------------------------------------------------------------------------- /test/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/libcan/HEAD/test/test.cpp -------------------------------------------------------------------------------- /windows.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/libcan/HEAD/windows.mk --------------------------------------------------------------------------------