├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── README.md ├── examples ├── CMakeLists.txt ├── jt808_1hz_location_report_client.cc ├── jt808_client.cc ├── jt808_connect_emulator.cc ├── jt808_in_out_polygon_area_report.cc ├── jt808_multimedia_upload_client.cc ├── jt808_multimedia_upload_server.cc ├── jt808_packager.cc ├── jt808_parser.cc ├── jt808_server.cc ├── jt808_terminal_parameter_config.cc └── jt808_upgrade_request.cc ├── include └── jt808 │ ├── area_route.h │ ├── bcd.h │ ├── client.h │ ├── location_report.h │ ├── multimedia_upload.h │ ├── packager.h │ ├── parser.h │ ├── protocol_parameter.h │ ├── server.h │ ├── socket_util.h │ ├── terminal_parameter.h │ └── util.h └── src ├── bcd.cc ├── client.cc ├── location_report.cc ├── packager.cc ├── parser.cc ├── server.cc └── util.cc /.gitignore: -------------------------------------------------------------------------------- 1 | .vs 2 | .vscode 3 | build -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ybzwyrcld/jt808/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ybzwyrcld/jt808/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ybzwyrcld/jt808/HEAD/README.md -------------------------------------------------------------------------------- /examples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ybzwyrcld/jt808/HEAD/examples/CMakeLists.txt -------------------------------------------------------------------------------- /examples/jt808_1hz_location_report_client.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ybzwyrcld/jt808/HEAD/examples/jt808_1hz_location_report_client.cc -------------------------------------------------------------------------------- /examples/jt808_client.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ybzwyrcld/jt808/HEAD/examples/jt808_client.cc -------------------------------------------------------------------------------- /examples/jt808_connect_emulator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ybzwyrcld/jt808/HEAD/examples/jt808_connect_emulator.cc -------------------------------------------------------------------------------- /examples/jt808_in_out_polygon_area_report.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ybzwyrcld/jt808/HEAD/examples/jt808_in_out_polygon_area_report.cc -------------------------------------------------------------------------------- /examples/jt808_multimedia_upload_client.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ybzwyrcld/jt808/HEAD/examples/jt808_multimedia_upload_client.cc -------------------------------------------------------------------------------- /examples/jt808_multimedia_upload_server.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ybzwyrcld/jt808/HEAD/examples/jt808_multimedia_upload_server.cc -------------------------------------------------------------------------------- /examples/jt808_packager.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ybzwyrcld/jt808/HEAD/examples/jt808_packager.cc -------------------------------------------------------------------------------- /examples/jt808_parser.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ybzwyrcld/jt808/HEAD/examples/jt808_parser.cc -------------------------------------------------------------------------------- /examples/jt808_server.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ybzwyrcld/jt808/HEAD/examples/jt808_server.cc -------------------------------------------------------------------------------- /examples/jt808_terminal_parameter_config.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ybzwyrcld/jt808/HEAD/examples/jt808_terminal_parameter_config.cc -------------------------------------------------------------------------------- /examples/jt808_upgrade_request.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ybzwyrcld/jt808/HEAD/examples/jt808_upgrade_request.cc -------------------------------------------------------------------------------- /include/jt808/area_route.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ybzwyrcld/jt808/HEAD/include/jt808/area_route.h -------------------------------------------------------------------------------- /include/jt808/bcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ybzwyrcld/jt808/HEAD/include/jt808/bcd.h -------------------------------------------------------------------------------- /include/jt808/client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ybzwyrcld/jt808/HEAD/include/jt808/client.h -------------------------------------------------------------------------------- /include/jt808/location_report.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ybzwyrcld/jt808/HEAD/include/jt808/location_report.h -------------------------------------------------------------------------------- /include/jt808/multimedia_upload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ybzwyrcld/jt808/HEAD/include/jt808/multimedia_upload.h -------------------------------------------------------------------------------- /include/jt808/packager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ybzwyrcld/jt808/HEAD/include/jt808/packager.h -------------------------------------------------------------------------------- /include/jt808/parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ybzwyrcld/jt808/HEAD/include/jt808/parser.h -------------------------------------------------------------------------------- /include/jt808/protocol_parameter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ybzwyrcld/jt808/HEAD/include/jt808/protocol_parameter.h -------------------------------------------------------------------------------- /include/jt808/server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ybzwyrcld/jt808/HEAD/include/jt808/server.h -------------------------------------------------------------------------------- /include/jt808/socket_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ybzwyrcld/jt808/HEAD/include/jt808/socket_util.h -------------------------------------------------------------------------------- /include/jt808/terminal_parameter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ybzwyrcld/jt808/HEAD/include/jt808/terminal_parameter.h -------------------------------------------------------------------------------- /include/jt808/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ybzwyrcld/jt808/HEAD/include/jt808/util.h -------------------------------------------------------------------------------- /src/bcd.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ybzwyrcld/jt808/HEAD/src/bcd.cc -------------------------------------------------------------------------------- /src/client.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ybzwyrcld/jt808/HEAD/src/client.cc -------------------------------------------------------------------------------- /src/location_report.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ybzwyrcld/jt808/HEAD/src/location_report.cc -------------------------------------------------------------------------------- /src/packager.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ybzwyrcld/jt808/HEAD/src/packager.cc -------------------------------------------------------------------------------- /src/parser.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ybzwyrcld/jt808/HEAD/src/parser.cc -------------------------------------------------------------------------------- /src/server.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ybzwyrcld/jt808/HEAD/src/server.cc -------------------------------------------------------------------------------- /src/util.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ybzwyrcld/jt808/HEAD/src/util.cc --------------------------------------------------------------------------------