├── .gitignore ├── .gitmodules ├── 3rdparty ├── CMakeLists.txt └── custom_crc │ ├── 3rdparty │ ├── CMakeLists.txt │ └── getopt │ │ ├── CMakeLists.txt │ │ └── src │ │ ├── CMakeLists.txt │ │ ├── getopt.c │ │ └── getopt.h │ ├── CMakeLists.txt │ └── src │ ├── CMakeLists.txt │ ├── custom_crc16.cpp │ ├── custom_crc16.h │ ├── custom_crc32.cpp │ └── custom_crc32.h ├── @Docs ├── DJIR_SDK_LOGO.png ├── DJI_R_SDK_Protocol_and_User_Interface_EN.pdf └── Device_Connection_Diagram.png ├── CMakeLists.txt ├── README.md ├── examples ├── CMakeLists.txt └── ConsoleTest │ ├── CMakeLists.txt │ └── src │ ├── CMakeLists.txt │ └── main.cpp └── src ├── CMakeLists.txt ├── CmdCombine.cpp ├── CmdCombine.h ├── DJIR_SDK.cpp ├── DJIR_SDK.h ├── Handle.cpp └── Handle.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ConstantRobotics/DJIR_SDK/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ConstantRobotics/DJIR_SDK/HEAD/.gitmodules -------------------------------------------------------------------------------- /3rdparty/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ConstantRobotics/DJIR_SDK/HEAD/3rdparty/CMakeLists.txt -------------------------------------------------------------------------------- /3rdparty/custom_crc/3rdparty/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ConstantRobotics/DJIR_SDK/HEAD/3rdparty/custom_crc/3rdparty/CMakeLists.txt -------------------------------------------------------------------------------- /3rdparty/custom_crc/3rdparty/getopt/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ConstantRobotics/DJIR_SDK/HEAD/3rdparty/custom_crc/3rdparty/getopt/CMakeLists.txt -------------------------------------------------------------------------------- /3rdparty/custom_crc/3rdparty/getopt/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ConstantRobotics/DJIR_SDK/HEAD/3rdparty/custom_crc/3rdparty/getopt/src/CMakeLists.txt -------------------------------------------------------------------------------- /3rdparty/custom_crc/3rdparty/getopt/src/getopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ConstantRobotics/DJIR_SDK/HEAD/3rdparty/custom_crc/3rdparty/getopt/src/getopt.c -------------------------------------------------------------------------------- /3rdparty/custom_crc/3rdparty/getopt/src/getopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ConstantRobotics/DJIR_SDK/HEAD/3rdparty/custom_crc/3rdparty/getopt/src/getopt.h -------------------------------------------------------------------------------- /3rdparty/custom_crc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ConstantRobotics/DJIR_SDK/HEAD/3rdparty/custom_crc/CMakeLists.txt -------------------------------------------------------------------------------- /3rdparty/custom_crc/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ConstantRobotics/DJIR_SDK/HEAD/3rdparty/custom_crc/src/CMakeLists.txt -------------------------------------------------------------------------------- /3rdparty/custom_crc/src/custom_crc16.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ConstantRobotics/DJIR_SDK/HEAD/3rdparty/custom_crc/src/custom_crc16.cpp -------------------------------------------------------------------------------- /3rdparty/custom_crc/src/custom_crc16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ConstantRobotics/DJIR_SDK/HEAD/3rdparty/custom_crc/src/custom_crc16.h -------------------------------------------------------------------------------- /3rdparty/custom_crc/src/custom_crc32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ConstantRobotics/DJIR_SDK/HEAD/3rdparty/custom_crc/src/custom_crc32.cpp -------------------------------------------------------------------------------- /3rdparty/custom_crc/src/custom_crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ConstantRobotics/DJIR_SDK/HEAD/3rdparty/custom_crc/src/custom_crc32.h -------------------------------------------------------------------------------- /@Docs/DJIR_SDK_LOGO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ConstantRobotics/DJIR_SDK/HEAD/@Docs/DJIR_SDK_LOGO.png -------------------------------------------------------------------------------- /@Docs/DJI_R_SDK_Protocol_and_User_Interface_EN.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ConstantRobotics/DJIR_SDK/HEAD/@Docs/DJI_R_SDK_Protocol_and_User_Interface_EN.pdf -------------------------------------------------------------------------------- /@Docs/Device_Connection_Diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ConstantRobotics/DJIR_SDK/HEAD/@Docs/Device_Connection_Diagram.png -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ConstantRobotics/DJIR_SDK/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ConstantRobotics/DJIR_SDK/HEAD/README.md -------------------------------------------------------------------------------- /examples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ConstantRobotics/DJIR_SDK/HEAD/examples/CMakeLists.txt -------------------------------------------------------------------------------- /examples/ConsoleTest/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ConstantRobotics/DJIR_SDK/HEAD/examples/ConsoleTest/CMakeLists.txt -------------------------------------------------------------------------------- /examples/ConsoleTest/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ConstantRobotics/DJIR_SDK/HEAD/examples/ConsoleTest/src/CMakeLists.txt -------------------------------------------------------------------------------- /examples/ConsoleTest/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ConstantRobotics/DJIR_SDK/HEAD/examples/ConsoleTest/src/main.cpp -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ConstantRobotics/DJIR_SDK/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/CmdCombine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ConstantRobotics/DJIR_SDK/HEAD/src/CmdCombine.cpp -------------------------------------------------------------------------------- /src/CmdCombine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ConstantRobotics/DJIR_SDK/HEAD/src/CmdCombine.h -------------------------------------------------------------------------------- /src/DJIR_SDK.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ConstantRobotics/DJIR_SDK/HEAD/src/DJIR_SDK.cpp -------------------------------------------------------------------------------- /src/DJIR_SDK.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ConstantRobotics/DJIR_SDK/HEAD/src/DJIR_SDK.h -------------------------------------------------------------------------------- /src/Handle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ConstantRobotics/DJIR_SDK/HEAD/src/Handle.cpp -------------------------------------------------------------------------------- /src/Handle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ConstantRobotics/DJIR_SDK/HEAD/src/Handle.h --------------------------------------------------------------------------------