What a difference between Type "uint8[] " and "uint8 array" in Custom Characteristic Field of BLE?
And how to assign array type " uint8[] [] " ?
Solved! Go to Solution.
Not from the component.
What you are looking for is 2-D array. With respect to memory, it will be a continuous memory location. So you can transfer the data as a pointer and length of total data.
Not from the component.
What you are looking for is 2-D array. With respect to memory, it will be a continuous memory location. So you can transfer the data as a pointer and length of total data.
Ok, got it. And what a difference between Type "uint8[] " and "uint8 array" ?