We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 32929bd commit 53f107dCopy full SHA for 53f107d
1 file changed
softioc/device.py
@@ -267,7 +267,7 @@ def _value_to_epics(self, value):
267
# Value being written must be a string, and will be automatically null
268
# terminated where possible.
269
result = self._ctype_()
270
- result.value = value.encode()
+ result.value = value.encode() + b'\0'
271
return result
272
273
def _epics_to_value(self, epics):
0 commit comments