Simulators from older SDKs seem OK.
4 field simple datafields can crash the venu3 series simulator
This applies to the venu3, venu3S and vivoactive5.
1, 2 or 3 field displays are OK.
The simulator crashes when some numeric values are returned from the compute method.
Some examples:
return 1.23; // OK
return 12.3; // fails
return "12.3"; // OK
return "12.30"; /fails
return 123; // OK
return "123"; // OK
return 1234; // fails
return "1234"; // fails
return "123.4"; // fails
return "1.2.3"; // fails
return "1,2.3"; // OK
return "1.2,3"; // OK