Spark.Publish max length (63 characters)

Hi @emrebekar67

You make Xml_Mark as a one dimension C char array with many bytes (200-ish you say), but then you index into it with 0 to 7 which only gets one character per iteration.

I think you meant to declare Xml_Mark as a two dimensional C array with a first dimension of 8 and a second dimension that fits your longest string or a max of 64.

2 Likes