ArFe
ArFe
When parsing the "xsd:byte" tag, it parses byte. Byte is unsigned in go, so it should be int8 (signed instead). **Steps to reproduce the issue:** 1. Have an xsd with...
The c library defines `#define SPARKPLUG_DEBUG 1` in the code. That prevents anyone from disabling the debug print without changing the code, as **DEBUG_PRINT** is defined if **SPARKPLUG_DEBUG** is defined...
When hovering over cJSON_Compare, it would show cJSON_Duplicate information, which was really confusing. Fix the in code documentation, so it shows properly.
The Template Param Value function is missing DateTime in its JS Sparkplug Payload function. It should be as simple as this o fix: ``` case 13: // DateTime if (isSet(object.longValue))...