Move the array size in square brackets because compiler can check the size and, for me, its has better readability: ```c // array size is 32 static const uint8_t startup[] = { ``` to ```c static const uint8_t startup[32] = { ```