Are arrays supported in the MITA API?
I am trying to declare an array of length 10 using the following:
var a: array<int32, 10>;
However, I got an error even though this is the correct syntax according to the MITA documentation (https://www.eclipse.org/mita/language/arrays/).
Does the BOSCH MITA sopport only a subset of the eclipse MITA api?
Solved! Go to Solution.
Hello JanGieseler
Yes, arrays supported in the MITA API
Please find the correct syntax declaration for array below,
let data = new array<int32>(size = 10);
let data : array<uint8> = [0xCA, 0xFE];