static uint8_t togglecode[256] = {
[0x3A] CAPSLOCK,
[0x45] NUMLOCK,
[0x46] SCROLLLOCK
};
What's the meaning of [0x3A] here? I have only learned statements like int a[2] = {1, 2};
|
|
It means initialise the n-th element of the array. The example you've given will mean that:
These are called "designated initializers", and are actually part of the C99 standard. However, the syntax without the
|
|||
|
|
|
According to the GCC docs this is ISO C99 compliant. They refer to it as "Designated Initialzers":
I've never seen this syntax before, but I just compiled it with gcc 4.4.5, with -Wall. It compiled successfully and gave no warnings. As you can see from that example, it allows you to initialize specific array elements, leaving the others untouched. |
||||
|
|
|
That was introduced in C99 and it's called a designated initialiser. It basically allows you to set specific values in an array with the rest left as defaults. In this particular case, the array indexes are the keyboard scan codes. On the first link above, it states that:
is equivalent to:
Interestingly enough, though the link states that |
||||
|
|
|
It's (close to) the syntax of designated initializers, a C99 feature. Basically, it initializes parts of an array, for example;
Intializes the second value of the array to 6, and the third to 3. In your case the array offsets happen to be in hex (0x3a) which initializes the 58'th element of the array to the value of CAPSLOCK which presumably is defined in the code above the code you're showing. The version in your code without the |
|||
|
|