Hi there!
In IDL it is possible to declare constants like this:
// IDL_code_start
const octet BYTE = 0xFF;
// IDL_code_end
I was wondering if it is also possible to declare constant arrays in IDL? For example:
// IDL_code_start
typedef octet octetArr[2];
const octetArr2 testArr2 = {0xFF, 0xFF};
// IDL_code_end
This code, of course, does not compile. Is there another way to do something like that?
Best gegards.