Asynchronous TPDO #337
-
Hi all, I was wondering if it is possible to transmit asynchronous TPDO messages based on internal events of the objects in the PDO mapping. I used transmission types 245 and 255. Hope someone can give me an answer |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
That's really a question for your device manufacturer. TPDOs are sent from the device, the python-canopen script on your computer is not involved in the transmission, but only receives the PDO. You can set the PDO transmission type through the API, something like |
Beta Was this translation helpful? Give feedback.
That's really a question for your device manufacturer. TPDOs are sent from the device, the python-canopen script on your computer is not involved in the transmission, but only receives the PDO. You can set the PDO transmission type through the API, something like
node.tpdo[1].trans_type = 254
followed bynode.tpdo[1].save()
.