Is it possible to have a format with more than 1000 characters? I have some registers whose values can be 0-600 and each value represents a different status – e.g.
RFI Overcurrent Persistent = 252
Voltage difference exceeded = 253
VDC not reached = 254
Battery open detection = 255
Using enum format I quickly hit the 1000 character limit
Wow. I didn’t expect that there could be so many enumerations. I used Text in SVG when I had an enumeration with omissions in the values. And I used dynamic drawings and a collection to control the output, respectively.
The situation is a little different, but this is how you can work around this problem.