Skip to content

Commit

Permalink
dsdl_compiler: update to master
Browse files Browse the repository at this point in the history
tridge committed Dec 16, 2021
1 parent 8effda2 commit 2c00bc5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libuavcan/dsdl_compiler/pyuavcan
Submodule pyuavcan updated 52 files
+54 −0 .github/workflows/python-package.yml
+35 −0 .github/workflows/python-publish.yml
+15 −0 .gitignore
+0 −3 .gitmodules
+20 −0 .travis.yml
+1 −0 MANIFEST.in
+22 −11 README.md
+12 −0 appveyor.yml
+216 −0 dronecan/__init__.py
+16 −0 dronecan/app/__init__.py
+217 −0 dronecan/app/dynamic_node_id.py
+101 −0 dronecan/app/file_server.py
+27 −0 dronecan/app/log_message_monitor.py
+70 −0 dronecan/app/message_collector.py
+223 −0 dronecan/app/node_monitor.py
+40 −0 dronecan/driver/__init__.py
+89 −0 dronecan/driver/common.py
+158 −0 dronecan/driver/python_can.py
+799 −0 dronecan/driver/slcan.py
+285 −0 dronecan/driver/socketcan.py
+250 −0 dronecan/driver/timestamp_estimator.py
+24 −0 dronecan/dsdl/__init__.py
+17 −4 dronecan/dsdl/common.py
+235 −113 dronecan/dsdl/parser.py
+7 −2 dronecan/dsdl/signature.py
+8 −2 dronecan/dsdl/type_limits.py
+401 −0 dronecan/introspect.py
+537 −0 dronecan/node.py
+876 −0 dronecan/transport.py
+10 −0 dronecan/version.py
+0 −1 dsdl
+2 −0 remove_build_outputs.sh
+5 −0 setup.cfg
+56 −20 setup.py
+8 −0 test/dsdl/__init__.py
+4 −0 test/dsdl/fake_dsdl/ns0_base/ns0/20000.Type0.uavcan
+5 −0 test/dsdl/fake_dsdl/ns0_duplicated/ns0/20000.Type0.uavcan
+4 −0 test/dsdl/fake_dsdl/ns0_redefined/ns0/20000.Type0.uavcan
+10 −1 test/dsdl/test_common.py
+51 −0 test/dsdl/test_load_dsdl.py
+45 −2 test/dsdl/test_parser.py
+10 −1 test/dsdl/test_signature.py
+10 −1 test/test_driver.py
+81 −2 test/test_node.py
+133 −51 test/test_transport.py
+0 −108 uavcan/__init__.py
+0 −328 uavcan/driver.py
+0 −19 uavcan/dsdl/__init__.py
+0 −175 uavcan/monitors/__init__.py
+0 −243 uavcan/node.py
+0 −55 uavcan/services/__init__.py
+0 −678 uavcan/transport.py

0 comments on commit 2c00bc5

Please sign in to comment.