xref: /OK3568_Linux_fs/buildroot/support/testing/tests/package/sample_python_can.py (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1import can
2
3msg = can.Message(arbitration_id=0xc0ffee,
4                  data=[0, 25, 0, 1, 3, 1, 4, 1],
5                  is_extended_id=True)
6assert(msg is not None)
7