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